Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/openssh/files: openssh-5.8_p1-x509-hpn-glue.patch
Date: Sat, 05 Feb 2011 19:08:52
Message-Id: 20110205190837.240DC20057@flycatcher.gentoo.org
1 vapier 11/02/05 19:08:37
2
3 Added: openssh-5.8_p1-x509-hpn-glue.patch
4 Log:
5 Version bump #353673. Default HPN to on when available #347193 by Jeremy Olexa.
6
7 (Portage version: 2.2.0_alpha20/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 net-misc/openssh/files/openssh-5.8_p1-x509-hpn-glue.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-5.8_p1-x509-hpn-glue.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/openssh/files/openssh-5.8_p1-x509-hpn-glue.patch?rev=1.1&content-type=text/plain
14
15 Index: openssh-5.8_p1-x509-hpn-glue.patch
16 ===================================================================
17 Move things around so hpn applies cleanly when using X509.
18
19 --- a/Makefile.in
20 +++ b/Makefile.in
21 @@ -46,12 +46,13 @@
22 CC=@CC@
23 LD=@LD@
24 CFLAGS=@CFLAGS@
25 -CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ @LDAP_CPPFLAGS@ $(PATHS) @DEFS@
26 +CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@
27 LIBS=@LIBS@
28 SSHLIBS=@SSHLIBS@
29 SSHDLIBS=@SSHDLIBS@
30 LIBEDIT=@LIBEDIT@
31 LIBLDAP=@LDAP_LDFLAGS@ @LDAP_LIBS@
32 +CPPFLAGS+=@LDAP_CPPFLAGS@
33 AR=@AR@
34 AWK=@AWK@
35 RANLIB=@RANLIB@
36 --- a/servconf.c
37 +++ b/servconf.c
38 @@ -153,9 +153,6 @@ initialize_server_options(ServerOptions *options)
39 options->zero_knowledge_password_authentication = -1;
40 options->revoked_keys_file = NULL;
41 options->trusted_user_ca_keys = NULL;
42 - options->authorized_principals_file = NULL;
43 - options->ip_qos_interactive = -1;
44 - options->ip_qos_bulk = -1;
45
46 options->hostbased_algorithms = NULL;
47 options->pubkey_algorithms = NULL;
48 @@ -168,6 +165,9 @@ initialize_server_options(ServerOptions *options)
49 options->va.certificate_file = NULL;
50 options->va.responder_url = NULL;
51 #endif /*def SSH_OCSP_ENABLED*/
52 + options->authorized_principals_file = NULL;
53 + options->ip_qos_interactive = -1;
54 + options->ip_qos_bulk = -1;
55 }
56
57 void
58 @@ -367,9 +367,6 @@ typedef enum {
59 sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel,
60 sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
61 sUsePrivilegeSeparation, sAllowAgentForwarding,
62 - sZeroKnowledgePasswordAuthentication, sHostCertificate,
63 - sRevokedKeys, sTrustedUserCAKeys, sAuthorizedPrincipalsFile,
64 - sKexAlgorithms, sIPQoS,
65 sHostbasedAlgorithms,
66 sPubkeyAlgorithms,
67 sX509KeyAlgorithm,
68 @@ -380,6 +377,9 @@ typedef enum {
69 sCAldapVersion, sCAldapURL,
70 sVAType, sVACertificateFile,
71 sVAOCSPResponderURL,
72 + sZeroKnowledgePasswordAuthentication, sHostCertificate,
73 + sRevokedKeys, sTrustedUserCAKeys, sAuthorizedPrincipalsFile,
74 + sKexAlgorithms, sIPQoS,
75 sDeprecated, sUnsupported
76 } ServerOpCodes;