diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-03-09 01:04:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-03-09 01:04:18 +0000 |
commit | 3c9cb510cebfc321ede9a91893f5452174b24624 (patch) | |
tree | 2677a07bfe5b824d8953c704e86686670bd82cc1 /net-misc/openssh/files | |
parent | Update loop-aes patch #307987. (diff) | |
download | gentoo-2-3c9cb510cebfc321ede9a91893f5452174b24624.tar.gz gentoo-2-3c9cb510cebfc321ede9a91893f5452174b24624.tar.bz2 gentoo-2-3c9cb510cebfc321ede9a91893f5452174b24624.zip |
old
Diffstat (limited to 'net-misc/openssh/files')
-rw-r--r-- | net-misc/openssh/files/openssh-4.4_p1-ldap-hpn-glue.patch | 54 | ||||
-rw-r--r-- | net-misc/openssh/files/openssh-4.9_p1-x509-hpn-glue.patch | 91 |
2 files changed, 0 insertions, 145 deletions
diff --git a/net-misc/openssh/files/openssh-4.4_p1-ldap-hpn-glue.patch b/net-misc/openssh/files/openssh-4.4_p1-ldap-hpn-glue.patch deleted file mode 100644 index 20e796b5f975..000000000000 --- a/net-misc/openssh/files/openssh-4.4_p1-ldap-hpn-glue.patch +++ /dev/null @@ -1,54 +0,0 @@ -allow ldap and hpn patches to play nice - ---- servconf.c -+++ servconf.c -@@ -116,24 +116,6 @@ - options->num_allow_groups = 0; - options->num_deny_groups = 0; - options->ciphers = NULL; -- options->macs = NULL; -- options->protocol = SSH_PROTO_UNKNOWN; -- options->gateway_ports = -1; -- options->num_subsystems = 0; -- options->max_startups_begin = -1; -- options->max_startups_rate = -1; -- options->max_startups = -1; -- options->max_authtries = -1; -- options->banner = NULL; -- options->use_dns = -1; -- options->client_alive_interval = -1; -- options->client_alive_count_max = -1; -- options->authorized_keys_file = NULL; -- options->authorized_keys_file2 = NULL; -- options->num_accept_env = 0; -- options->permit_tun = -1; -- options->num_permitted_opens = -1; -- options->adm_forced_command = NULL; - #ifdef WITH_LDAP_PUBKEY - /* XXX dirty */ - options->lpk.ld = NULL; -@@ -152,6 +134,24 @@ - options->lpk.flags = FLAG_EMPTY; - #endif - -+ options->macs = NULL; -+ options->protocol = SSH_PROTO_UNKNOWN; -+ options->gateway_ports = -1; -+ options->num_subsystems = 0; -+ options->max_startups_begin = -1; -+ options->max_startups_rate = -1; -+ options->max_startups = -1; -+ options->max_authtries = -1; -+ options->banner = NULL; -+ options->use_dns = -1; -+ options->client_alive_interval = -1; -+ options->client_alive_count_max = -1; -+ options->authorized_keys_file = NULL; -+ options->authorized_keys_file2 = NULL; -+ options->num_accept_env = 0; -+ options->permit_tun = -1; -+ options->num_permitted_opens = -1; -+ options->adm_forced_command = NULL; - } - - void diff --git a/net-misc/openssh/files/openssh-4.9_p1-x509-hpn-glue.patch b/net-misc/openssh/files/openssh-4.9_p1-x509-hpn-glue.patch deleted file mode 100644 index a024b7140080..000000000000 --- a/net-misc/openssh/files/openssh-4.9_p1-x509-hpn-glue.patch +++ /dev/null @@ -1,91 +0,0 @@ -move things around so hpn applies cleanly when using X509 - ---- servconf.c -+++ servconf.c -@@ -106,6 +106,17 @@ - options->log_level = SYSLOG_LEVEL_NOT_SET; - options->rhosts_rsa_authentication = -1; - options->hostbased_authentication = -1; -+ options->hostbased_algorithms = NULL; -+ options->pubkey_algorithms = NULL; -+ ssh_x509flags_initialize(&options->x509flags, 1); -+#ifndef SSH_X509STORE_DISABLED -+ ssh_x509store_initialize(&options->ca); -+#endif /*ndef SSH_X509STORE_DISABLED*/ -+#ifdef SSH_OCSP_ENABLED -+ options->va.type = -1; -+ options->va.certificate_file = NULL; -+ options->va.responder_url = NULL; -+#endif /*def SSH_OCSP_ENABLED*/ - options->hostbased_uses_name_from_packet_only = -1; - options->rsa_authentication = -1; - options->pubkey_authentication = -1; -@@ -147,18 +158,6 @@ - options->num_permitted_opens = -1; - options->adm_forced_command = NULL; - options->chroot_directory = NULL; -- -- options->hostbased_algorithms = NULL; -- options->pubkey_algorithms = NULL; -- ssh_x509flags_initialize(&options->x509flags, 1); --#ifndef SSH_X509STORE_DISABLED -- ssh_x509store_initialize(&options->ca); --#endif /*ndef SSH_X509STORE_DISABLED*/ --#ifdef SSH_OCSP_ENABLED -- options->va.type = -1; -- options->va.certificate_file = NULL; -- options->va.responder_url = NULL; --#endif /*def SSH_OCSP_ENABLED*/ - } - - void -@@ -329,6 +329,16 @@ - /* Portable-specific options */ - sUsePAM, - /* Standard Options */ -+ sHostbasedAlgorithms, -+ sPubkeyAlgorithms, -+ sX509KeyAlgorithm, -+ sAllowedClientCertPurpose, -+ sKeyAllowSelfIssued, sMandatoryCRL, -+ sCACertificateFile, sCACertificatePath, -+ sCARevocationFile, sCARevocationPath, -+ sCAldapVersion, sCAldapURL, -+ sVAType, sVACertificateFile, -+ sVAOCSPResponderURL, - sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime, - sPermitRootLogin, sLogFacility, sLogLevel, - sRhostsRSAAuthentication, sRSAAuthentication, -@@ -351,16 +361,6 @@ - sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, - sMatch, sPermitOpen, sForceCommand, - sUsePrivilegeSeparation, -- sHostbasedAlgorithms, -- sPubkeyAlgorithms, -- sX509KeyAlgorithm, -- sAllowedClientCertPurpose, -- sKeyAllowSelfIssued, sMandatoryCRL, -- sCACertificateFile, sCACertificatePath, -- sCARevocationFile, sCARevocationPath, -- sCAldapVersion, sCAldapURL, -- sVAType, sVACertificateFile, -- sVAOCSPResponderURL, - sDeprecated, sUnsupported - } ServerOpCodes; - ---- Makefile.in -+++ Makefile.in -@@ -44,11 +44,12 @@ - CC=@CC@ - LD=@LD@ - CFLAGS=@CFLAGS@ --CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ @LDAP_CPPFLAGS@ $(PATHS) @DEFS@ -+CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@ - LIBS=@LIBS@ - SSHDLIBS=@SSHDLIBS@ - LIBEDIT=@LIBEDIT@ - LIBLDAP=@LDAP_LDFLAGS@ @LDAP_LIBS@ -+CPPFLAGS += @LDAP_CPPFLAGS@ - AR=@AR@ - AWK=@AWK@ - RANLIB=@RANLIB@ |