aboutsummaryrefslogtreecommitdiffstats
path: root/security/openssh-portable/files
diff options
context:
space:
mode:
authormnag <mnag@FreeBSD.org>2007-09-08 09:18:31 +0800
committermnag <mnag@FreeBSD.org>2007-09-08 09:18:31 +0800
commitbb5fa3c546b8efb9cbfcc82c7b00afbc2199eb43 (patch)
treeb5f53d84756b9747b9ba9ea794424b100a584cdc /security/openssh-portable/files
parent9ccc7e92dea72d32d4ae04470bbce43e6f9227da (diff)
downloadfreebsd-ports-gnome-bb5fa3c546b8efb9cbfcc82c7b00afbc2199eb43.tar.gz
freebsd-ports-gnome-bb5fa3c546b8efb9cbfcc82c7b00afbc2199eb43.tar.zst
freebsd-ports-gnome-bb5fa3c546b8efb9cbfcc82c7b00afbc2199eb43.zip
- Update to 4.7p1
- Update HPN patch to 4.7p1-hpn12v18 - Mark as BROKEN WITH_KERB_GSSAPI while developer release a new patch
Diffstat (limited to 'security/openssh-portable/files')
-rw-r--r--security/openssh-portable/files/patch-fix-challenge-response32
1 files changed, 0 insertions, 32 deletions
diff --git a/security/openssh-portable/files/patch-fix-challenge-response b/security/openssh-portable/files/patch-fix-challenge-response
deleted file mode 100644
index e59aeab1d2c8..000000000000
--- a/security/openssh-portable/files/patch-fix-challenge-response
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# Backported from OpenBSD:
-#
-# Move C/R -> kbdint special case to after the defaults have been
-# loaded, which makes ChallengeResponse default to yes again. This
-# was broken by the Match changes and not fixed properly subsequently.
-# Found by okan at demirmen.com, ok djm@ "please do it" deraadt@
-#
---- servconf.c.orig 2007-08-30 11:50:17.000000000 -0300
-+++ servconf.c 2007-08-30 11:50:38.000000000 -0300
-@@ -1387,8 +1387,4 @@
- if (bad_options > 0)
- fatal("%s: terminating, %d bad configuration options",
- filename, bad_options);
--
-- /* challenge-response is implemented via keyboard interactive */
-- if (options->challenge_response_authentication == 1)
-- options->kbd_interactive_authentication = 1;
- }
---- sshd.c.orig 2007-08-30 11:50:30.000000000 -0300
-+++ sshd.c 2007-08-30 11:51:42.000000000 -0300
-@@ -1421,6 +1421,10 @@
- /* Fill in default values for those options not explicitly set. */
- fill_default_server_options(&options);
-
-+ /* challenge-response is implemented via keyboard interactive */
-+ if (options.challenge_response_authentication)
-+ options.kbd_interactive_authentication = 1;
-+
- /* set default channel AF */
- channel_set_af(options.address_family);
-