diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-20 09:02:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-20 09:02:04 +0000 |
commit | 099b346682bbce88a971660642fb3b50dd9949af (patch) | |
tree | a13eecef5232300794c350db614bb0d4559ed659 /usr.bin | |
parent | d07fbe5bc13c8cdd7c543f08b0a30aa4797cccf1 (diff) |
No, afs requires explicit enabling
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/servconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index ee7e4cd168a..bce496beaea 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.105 2002/03/20 19:12:24 stevesk Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.106 2002/04/20 09:02:03 deraadt Exp $"); #if defined(KRB4) || defined(KRB5) #include <krb.h> @@ -193,7 +193,7 @@ fill_default_server_options(ServerOptions *options) #endif #ifdef AFS if (options->afs_token_passing == -1) - options->afs_token_passing = k_hasafs(); + options->afs_token_passing = 0; #endif if (options->password_authentication == -1) options->password_authentication = 1; |