=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/auth-rsa.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- src/usr.bin/ssh/Attic/auth-rsa.c 1999/11/02 19:42:34 1.7 +++ src/usr.bin/ssh/Attic/auth-rsa.c 1999/11/11 23:36:52 1.8 @@ -16,7 +16,7 @@ */ #include "includes.h" -RCSID("$Id: auth-rsa.c,v 1.7 1999/11/02 19:42:34 markus Exp $"); +RCSID("$Id: auth-rsa.c,v 1.8 1999/11/11 23:36:52 markus Exp $"); #include "rsa.h" #include "packet.h" @@ -24,6 +24,7 @@ #include "ssh.h" #include "mpaux.h" #include "uidswap.h" +#include "servconf.h" #include #include @@ -128,8 +129,9 @@ successful. This may exit if there is a serious protocol violation. */ int -auth_rsa(struct passwd *pw, BIGNUM *client_n, int strict_modes) +auth_rsa(struct passwd *pw, BIGNUM *client_n) { + extern ServerOptions options; char line[8192]; int authenticated; unsigned int bits; @@ -164,7 +166,7 @@ return 0; } - if (strict_modes) { + if (options.strict_modes) { int fail=0; char buf[1024]; /* Check open file in order to avoid open/stat races */