summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2000-03-07 20:40:42 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2000-03-07 20:40:42 +0000
commit6dfe0d7e2d4c609e27a99bf6d2a466a13b4fe9cc (patch)
tree26eb3681c712e182ef0abb25dae9369f498e0a12 /usr.bin
parent4296b4d5a3e9b5f49cf036f71a69b9a7d91f62a2 (diff)
typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
Diffstat (limited to 'usr.bin')
-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;