From: markus Date: Tue, 7 Mar 2000 20:40:41 +0000 (+0000) Subject: typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a65d4f636bbc9d9f1ef88fd3cac6be4e50cd100e;p=openbsd typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de --- 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;