summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2000-03-07 20:40:41 +0000
committermarkus <markus@openbsd.org>2000-03-07 20:40:41 +0000
commita65d4f636bbc9d9f1ef88fd3cac6be4e50cd100e (patch)
tree775028ce21f79082e4167002748f34cf0d754562
parentTypo in synopsis: sont --> const (diff)
downloadwireguard-openbsd-a65d4f636bbc9d9f1ef88fd3cac6be4e50cd100e.tar.xz
wireguard-openbsd-a65d4f636bbc9d9f1ef88fd3cac6be4e50cd100e.zip
typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
-rw-r--r--usr.bin/ssh/servconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c
index d4cfbac4feb..15b326f918d 100644
--- a/usr.bin/ssh/servconf.c
+++ b/usr.bin/ssh/servconf.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$Id: servconf.c,v 1.30 2000/02/24 18:22:16 markus Exp $");
+RCSID("$Id: servconf.c,v 1.31 2000/03/07 20:40:41 markus Exp $");
#include "ssh.h"
#include "servconf.h"
@@ -402,7 +402,7 @@ parse_flag:
case sIgnoreUserKnownHosts:
intptr = &options->ignore_user_known_hosts;
- goto parse_int;
+ goto parse_flag;
case sRhostsAuthentication:
intptr = &options->rhosts_authentication;