diff options
author | 2001-04-02 14:20:23 +0000 | |
---|---|---|
committer | 2001-04-02 14:20:23 +0000 | |
commit | fee3bbf2185ba73bb5853f3deaa1db54dc60ef3f (patch) | |
tree | 6ca456a2e7182a02f237fc41c094b8d14dfaae0a | |
parent | typo; ok markus@ (diff) | |
download | wireguard-openbsd-fee3bbf2185ba73bb5853f3deaa1db54dc60ef3f.tar.xz wireguard-openbsd-fee3bbf2185ba73bb5853f3deaa1db54dc60ef3f.zip |
correct comment; ok markus@
-rw-r--r-- | usr.bin/ssh/readconf.c | 5 | ||||
-rw-r--r-- | usr.bin/ssh/servconf.c | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index e7f88df70fb..e1d4f28dc8d 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/readconf.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: readconf.c,v 1.69 2001/03/20 19:10:16 markus Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.70 2001/04/02 14:20:23 stevesk Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -217,8 +217,7 @@ add_remote_forward(Options *options, u_short port, const char *host, } /* - * Returns the number of the token pointed to by cp of length len. Never - * returns if the token is not known. + * Returns the number of the token pointed to by cp or oBadOption. */ static OpCodes diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index 681878615a9..8094d34ca4b 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.72 2001/03/25 13:16:10 stevesk Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.73 2001/04/02 14:20:23 stevesk Exp $"); #ifdef KRB4 #include <krb.h> @@ -284,8 +284,7 @@ static struct { }; /* - * Returns the number of the token pointed to by cp of length len. Never - * returns if the token is not known. + * Returns the number of the token pointed to by cp or sBadOption. */ static ServerOpCodes |