diff options
author | Damien Miller <djm@mindrot.org> | 2002-04-23 12:40:28 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-04-23 12:40:28 +0200 |
commit | e4ccf100e05d24c3cfb20a18685d1c507670c7c3 (patch) | |
tree | 9ce98847b27e03c4d80961f35953b8fbb669e44f /servconf.c | |
parent | - (djm) Make privsep work with PAM (still experimental) (diff) | |
download | openssh-e4ccf100e05d24c3cfb20a18685d1c507670c7c3.tar.xz openssh-e4ccf100e05d24c3cfb20a18685d1c507670c7c3.zip |
- (djm) OpenBSD CVS Sync
- deraadt@cvs.openbsd.org 2002/04/20 09:02:03
[servconf.c]
No, afs requires explicit enabling
Diffstat (limited to 'servconf.c')
-rw-r--r-- | servconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/servconf.c b/servconf.c index 8b5ee7bf1..5172813ec 100644 --- a/servconf.c +++ b/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) #include <krb.h> @@ -212,7 +212,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; |