summaryrefslogtreecommitdiff
path: root/monitor_wrap.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2015-08-11 13:33:24 +1000
committerColin Watson <cjwatson@debian.org>2015-11-24 20:45:17 +0000
commit4e1468d9745c5e32d99cd85386dfc74e90a5cf14 (patch)
treec8718e71500b3ff109de2d475c4bbd9f3dfcf405 /monitor_wrap.c
parentfe597b453a89c6d1dcbbd91cacef80adc3b52fc9 (diff)
Don't resend username to PAM; it already has it.
Pointed out by Moritz Jodeit; ok dtucker@ Origin: upstream, https://anongit.mindrot.org/openssh.git/commit/?id=d4697fe9a28dab7255c60433e4dd23cf7fce8a8b Forwarded: not-needed Last-Update: 2015-08-19 Patch-Name: backport-do-not-resend-username-to-pam.patch
Diffstat (limited to 'monitor_wrap.c')
-rw-r--r--monitor_wrap.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/monitor_wrap.c b/monitor_wrap.c
index 6ae72a03b..679991178 100644
--- a/monitor_wrap.c
+++ b/monitor_wrap.c
@@ -632,7 +632,6 @@ mm_sshpam_init_ctx(Authctxt *authctxt)
632 632
633 debug3("%s", __func__); 633 debug3("%s", __func__);
634 buffer_init(&m); 634 buffer_init(&m);
635 buffer_put_cstring(&m, authctxt->user);
636 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_INIT_CTX, &m); 635 mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PAM_INIT_CTX, &m);
637 debug3("%s: waiting for MONITOR_ANS_PAM_INIT_CTX", __func__); 636 debug3("%s: waiting for MONITOR_ANS_PAM_INIT_CTX", __func__);
638 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PAM_INIT_CTX, &m); 637 mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PAM_INIT_CTX, &m);