=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/nc/netcat.c,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- src/usr.bin/nc/netcat.c 2001/09/02 19:04:23 1.35 +++ src/usr.bin/nc/netcat.c 2001/09/02 19:07:17 1.36 @@ -1,4 +1,4 @@ -/* $OpenBSD: netcat.c,v 1.35 2001/09/02 19:04:23 jakob Exp $ */ +/* $OpenBSD: netcat.c,v 1.36 2001/09/02 19:07:17 jakob Exp $ */ /* * Copyright (c) 2001 Eric Jackson * @@ -619,7 +619,7 @@ \t-k Keep inbound sockets open for multiple connects\n\ \t-l Listen mode, for inbound connects\n\ \t-n Suppress name/port resolutions\n\ - \t-p Specify local port for remote connects\n\ + \t-p port\t Specify local port for remote connects\n\ \t-r Randomize remote ports\n\ \t-s addr\t Local source address\n\ \t-t Answer TELNET negotiation\n\ @@ -637,7 +637,8 @@ int ret; { fprintf(stderr, "usage: nc [-46hklnrtuvz] [-i interval] [-p source port]\n"); - fprintf(stderr, "\t [-s ip address] [-w timeout] [hostname] [port[s...]]\n"); + fprintf(stderr, "\t [-s ip address] [-w timeout] [-x proxy address [:port]]\n"); + fprintf(stderr, "\t [hostname] [port[s...]]\n"); if (ret) exit(1); }