Lines Matching +full:common +full:- +full:auth
1 --- /dev/null 2015-01-22 23:10:33.000000000 -0500
2 +++ dist/pfilter.c 2015-01-22 23:46:03.000000000 -0500
3 @@ -0,0 +1,32 @@
36 --- /dev/null 2015-01-20 21:14:44.000000000 -0500
37 +++ dist/pfilter.h 2015-01-20 20:16:20.000000000 -0500
38 @@ -0,0 +1,3 @@
46 diff -u -u -r1.10 Makefile
47 --- bin/sshd/Makefile 19 Oct 2014 16:30:58 -0000 1.10
48 +++ bin/sshd/Makefile 22 Jan 2015 21:39:21 -0000
49 @@ -15,7 +15,7 @@
50 auth2-none.c auth2-passwd.c auth2-pubkey.c \
52 kexdhs.c kexgexs.c kexecdhs.c sftp-server.c sftp-common.c \
53 - roaming_common.c roaming_serv.c sandbox-rlimit.c
54 + roaming_common.c roaming_serv.c sandbox-rlimit.c pfilter.c
56 COPTS.auth-options.c= -Wno-pointer-sign
57 COPTS.ldapauth.c= -Wno-format-nonliteral # XXX: should fix
58 @@ -68,3 +68,6 @@
60 LDADD+= -lwrap
63 +LDADD+= -lblocklist
65 diff -ru openssh-7.7p1/auth-pam.c dist/auth-pam.c
66 --- openssh-7.7p1/auth-pam.c 2018-04-02 01:38:28.000000000 -0400
67 +++ dist/auth-pam.c 2018-05-23 11:56:22.206661484 -0400
68 @@ -103,6 +103,7 @@
69 #include "ssh-gss.h"
76 @@ -526,6 +527,7 @@
77 ssh_msg_send(ctxt->pam_csock, PAM_MAXTRIES, &buffer);
79 ssh_msg_send(ctxt->pam_csock, PAM_AUTH_ERR, &buffer);
84 @@ -804,6 +806,7 @@
90 sshpam_authctxt->valid ? "" : "illegal user ",
91 sshpam_authctxt->user,
92 diff -ru openssh-7.7p1/auth2.c dist/auth2.c
93 --- openssh-7.7p1/auth2.c 2018-04-02 01:38:28.000000000 -0400
94 +++ dist/auth2.c 2018-05-23 11:57:31.022197317 -0400
95 @@ -51,6 +51,7 @@
102 #include "ssh-gss.h"
103 @@ -242,6 +243,7 @@
106 authctxt->pw = fakepw();
113 diff -ru openssh-7.7p1/sshd.c dist/sshd.c
114 --- openssh-7.7p1/sshd.c 2018-04-02 01:38:28.000000000 -0400
115 +++ dist/sshd.c 2018-05-23 11:59:39.573197347 -0400
116 @@ -122,6 +122,7 @@
117 #include "auth-options.h"
122 /* Re-exec fds */
124 @@ -346,6 +347,7 @@
129 if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
130 kill(pmonitor->m_pid, SIGALRM);
132 @@ -1835,6 +1837,8 @@
141 @@ -2280,6 +2284,9 @@