=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/servconf.c,v retrieving revision 1.58 retrieving revision 1.59 diff -u -r1.58 -r1.59 --- src/usr.bin/ssh/servconf.c 2001/01/18 16:20:22 1.58 +++ src/usr.bin/ssh/servconf.c 2001/01/19 12:45:26 1.59 @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.58 2001/01/18 16:20:22 markus Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.59 2001/01/19 12:45:26 markus Exp $"); #include "ssh.h" #include "servconf.h" @@ -61,9 +61,7 @@ #endif options->password_authentication = -1; options->kbd_interactive_authentication = -1; -#ifdef SKEY options->skey_authentication = -1; -#endif options->permit_empty_passwd = -1; options->use_login = -1; options->allow_tcp_forwarding = -1; @@ -157,10 +155,8 @@ options->password_authentication = 1; if (options->kbd_interactive_authentication == -1) options->kbd_interactive_authentication = 0; -#ifdef SKEY if (options->skey_authentication == -1) options->skey_authentication = 1; -#endif if (options->permit_empty_passwd == -1) options->permit_empty_passwd = 0; if (options->use_login == -1) @@ -189,9 +185,7 @@ #ifdef AFS sKerberosTgtPassing, sAFSTokenPassing, #endif -#ifdef SKEY sSkeyAuthentication, -#endif sPasswordAuthentication, sKbdInteractiveAuthentication, sListenAddress, sPrintMotd, sIgnoreRhosts, sX11Forwarding, sX11DisplayOffset, sStrictModes, sEmptyPasswd, sRandomSeedFile, sKeepAlives, sCheckMail, @@ -233,9 +227,7 @@ #endif { "passwordauthentication", sPasswordAuthentication }, { "kbdinteractiveauthentication", sKbdInteractiveAuthentication }, -#ifdef SKEY { "skeyauthentication", sSkeyAuthentication }, -#endif { "checkmail", sCheckMail }, { "listenaddress", sListenAddress }, { "printmotd", sPrintMotd }, @@ -530,11 +522,9 @@ intptr = &options->check_mail; goto parse_flag; -#ifdef SKEY case sSkeyAuthentication: intptr = &options->skey_authentication; goto parse_flag; -#endif case sPrintMotd: intptr = &options->print_motd;