aboutsummaryrefslogtreecommitdiff
path: root/toys/net
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2018-07-19 23:27:14 -0500
committerRob Landley <rob@landley.net>2018-07-19 23:27:14 -0500
commit0c5577513f215d1b81fe62f06afe4351e18f8ceb (patch)
tree05195d10c278082768f68d6ad99094a9879ced49 /toys/net
parent701d0d9328f3f8efb94a90c90994d3ada2648e35 (diff)
downloadtoybox-0c5577513f215d1b81fe62f06afe4351e18f8ceb.tar.gz
Tweak/add some comments.
Diffstat (limited to 'toys/net')
-rw-r--r--toys/net/netcat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/net/netcat.c b/toys/net/netcat.c
index cabc7e80..039b1944 100644
--- a/toys/net/netcat.c
+++ b/toys/net/netcat.c
@@ -108,7 +108,7 @@ void netcat_main(void)
set_alarm(TT.wait);
// The argument parsing logic can't make "<2" conditional on other
- // arguments like -f and -l, so we do it by hand here.
+ // arguments like -f and -l, so do it by hand here.
if ((toys.optflags&FLAG_f) ? toys.optc :
(!(toys.optflags&(FLAG_l|FLAG_L)) && toys.optc!=2))
help_exit("bad argument count");