rcolebaugh / rpms / openssh

Forked from rpms/openssh 2 years ago
Clone
8f2528
From 13bd2e2d622d01dc85d22b94520a5b243d006049 Mon Sep 17 00:00:00 2001
8f2528
From: "djm@openbsd.org" <djm@openbsd.org>
8f2528
Date: Fri, 6 Jan 2017 03:45:41 +0000
8f2528
Subject: [PATCH] upstream commit
8f2528
8f2528
sshd_config is documented to set
8f2528
GSSAPIStrictAcceptorCheck=yes by default, so actually make it do this.
8f2528
bz#2637 ok dtucker
8f2528
8f2528
Upstream-ID: 99ef8ac51f17f0f7aec166cb2e34228d4d72a665
8f2528
---
8f2528
 servconf.c | 4 ++--
8f2528
 1 file changed, 2 insertions(+), 2 deletions(-)
8f2528
8f2528
diff --git a/servconf.c b/servconf.c
8f2528
index 795ddbab7..c9105a592 100644
8f2528
--- a/servconf.c
8f2528
+++ b/servconf.c
8f2528
@@ -270,7 +270,7 @@ fill_default_server_options(ServerOptions *options)
8f2528
 	if (options->gss_cleanup_creds == -1)
8f2528
 		options->gss_cleanup_creds = 1;
8f2528
 	if (options->gss_strict_acceptor == -1)
8f2528
-		options->gss_strict_acceptor = 0;
8f2528
+		options->gss_strict_acceptor = 1;
8f2528
 	if (options->gss_store_rekey == -1)
8f2528
 		options->gss_store_rekey = 0;
8f2528
 	if (options->password_authentication == -1)
8f2528