summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/openssh/files/openssh-4.3_p2-securid-hpn-glue.patch')
-rw-r--r--net-misc/openssh/files/openssh-4.3_p2-securid-hpn-glue.patch69
1 files changed, 0 insertions, 69 deletions
diff --git a/net-misc/openssh/files/openssh-4.3_p2-securid-hpn-glue.patch b/net-misc/openssh/files/openssh-4.3_p2-securid-hpn-glue.patch
deleted file mode 100644
index 01f11970b35f..000000000000
--- a/net-misc/openssh/files/openssh-4.3_p2-securid-hpn-glue.patch
+++ /dev/null
@@ -1,69 +0,0 @@
-tweak the secure id code a little so hpn patches cleanly
-
---- servconf.c
-+++ servconf.c
-@@ -643,6 +643,32 @@
- *intptr = value;
- break;
-
-+#ifdef SECURID
-+ case sSecurIDAuthentication:
-+ intptr = &options->securid_authentication;
-+ goto parse_flag;
-+
-+ case sSecurIDFallBack:
-+ intptr = &options->securid_fallback;
-+ goto parse_flag;
-+
-+ case sAllowNonSecurID:
-+ intptr = &options->allow_nonsecurid;
-+ goto parse_flag;
-+
-+ case sNegateSecurIDUsers:
-+ intptr = &options->negate_securid_users;
-+ goto parse_flag;
-+
-+ case sSecurIDUsersFile:
-+ charptr = &options->securid_usersfile;
-+ goto parse_filename;
-+
-+ case sSecurIDIgnoreShell:
-+ intptr = &options->securid_ignore_shell;
-+ goto parse_flag;
-+#endif
-+
- case sIgnoreRhosts:
- intptr = &options->ignore_rhosts;
- parse_flag:
-@@ -662,31 +688,6 @@
- *intptr = value;
- break;
-
--#ifdef SECURID
-- case sSecurIDAuthentication:
-- intptr = &options->securid_authentication;
-- goto parse_flag;
--
-- case sSecurIDFallBack:
-- intptr = &options->securid_fallback;
-- goto parse_flag;
--
-- case sAllowNonSecurID:
-- intptr = &options->allow_nonsecurid;
-- goto parse_flag;
--
-- case sNegateSecurIDUsers:
-- intptr = &options->negate_securid_users;
-- goto parse_flag;
--
-- case sSecurIDUsersFile:
-- charptr = &options->securid_usersfile;
-- goto parse_filename;
--
-- case sSecurIDIgnoreShell:
-- intptr = &options->securid_ignore_shell;
-- goto parse_flag;
--#endif
- case sIgnoreUserKnownHosts:
- intptr = &options->ignore_user_known_hosts;
- goto parse_flag;