summaryrefslogtreecommitdiffstats
path: root/readconf.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-10-15 15:52:03 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-10-15 15:52:03 +1000
commita044f47679c27ca77b3ec19a6e0e148deb50a427 (patch)
tree5227cbefe5b06e6c18cf915365408320814cf824 /readconf.c
parent1f20394e92afa417c1201506f9ae8683170ac496 (diff)
- markus@cvs.openbsd.org 2003/10/08 15:21:24
[readconf.c ssh_config.5] default GSS API to no in client, too; ok jakob, deraadt@
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c
index 13987ffa..5a7084fe 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: readconf.c,v 1.121 2003/09/01 18:15:50 markus Exp $");
+RCSID("$OpenBSD: readconf.c,v 1.122 2003/10/08 15:21:24 markus Exp $");
#include "ssh.h"
#include "xmalloc.h"
@@ -885,7 +885,7 @@ fill_default_options(Options * options)
if (options->challenge_response_authentication == -1)
options->challenge_response_authentication = 1;
if (options->gss_authentication == -1)
- options->gss_authentication = 1;
+ options->gss_authentication = 0;
if (options->gss_deleg_creds == -1)
options->gss_deleg_creds = 0;
if (options->password_authentication == -1)