diff options
author | 2003-09-29 20:19:57 +0000 | |
---|---|---|
committer | 2003-09-29 20:19:57 +0000 | |
commit | 5eab2c80dd9d97b2ff7cc16310dc1161cfbf9135 (patch) | |
tree | 6d8aae8b3b0885c18f79c5d4866c3f3222aea6e5 | |
parent | simple dino manpage (diff) | |
download | wireguard-openbsd-5eab2c80dd9d97b2ff7cc16310dc1161cfbf9135.tar.xz wireguard-openbsd-5eab2c80dd9d97b2ff7cc16310dc1161cfbf9135.zip |
GSSAPICleanupCreds -> GSSAPICleanupCredentials
-rw-r--r-- | usr.bin/ssh/servconf.c | 6 | ||||
-rw-r--r-- | usr.bin/ssh/sshd_config | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index d82a86d1d8d..f1e273177bf 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.127 2003/09/01 18:15:50 markus Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.128 2003/09/29 20:19:57 markus Exp $"); #include "ssh.h" #include "log.h" @@ -279,10 +279,10 @@ static struct { { "afstokenpassing", sUnsupported }, #ifdef GSSAPI { "gssapiauthentication", sGssAuthentication }, - { "gssapicleanupcreds", sGssCleanupCreds }, + { "gssapicleanupcredentials", sGssCleanupCreds }, #else { "gssapiauthentication", sUnsupported }, - { "gssapicleanupcreds", sUnsupported }, + { "gssapicleanupcredentials", sUnsupported }, #endif { "passwordauthentication", sPasswordAuthentication }, { "kbdinteractiveauthentication", sKbdInteractiveAuthentication }, diff --git a/usr.bin/ssh/sshd_config b/usr.bin/ssh/sshd_config index 9a42f79ff22..8fa9e9082e4 100644 --- a/usr.bin/ssh/sshd_config +++ b/usr.bin/ssh/sshd_config @@ -1,4 +1,4 @@ -# $OpenBSD: sshd_config,v 1.65 2003/08/28 12:54:34 markus Exp $ +# $OpenBSD: sshd_config,v 1.66 2003/09/29 20:19:57 markus Exp $ # This is the sshd server system-wide configuration file. See # sshd_config(5) for more information. @@ -62,7 +62,7 @@ # GSSAPI options #GSSAPIAuthentication no -#GSSAPICleanupCreds yes +#GSSAPICleanupCredentials yes #AllowTcpForwarding yes #GatewayPorts no |