From fe49ecbc930de27747f0ca7da975677b91bf7108 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Thu, 21 Mar 2002 12:23:09 +0000 Subject: [PATCH] Use the "sshd" service instead of "csshd". The latter was only needed because of bugs (incorrect design decisions, actually) in Linux-PAM. Sponsored by: DARPA, NAI Labs --- crypto/openssh/auth1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/openssh/auth1.c b/crypto/openssh/auth1.c index 7311a23ee7d..54a23d5e1a4 100644 --- a/crypto/openssh/auth1.c +++ b/crypto/openssh/auth1.c @@ -280,7 +280,7 @@ do_authloop(Authctxt *authctxt) #ifdef USE_PAM case SSH_CMSG_AUTH_TIS: debug("rcvd SSH_CMSG_AUTH_TIS: Trying PAM"); - pam_cookie = ipam_start_auth("csshd", pw->pw_name); + pam_cookie = ipam_start_auth("sshd", pw->pw_name); /* We now have data available to send as a challenge */ if (pam_cookie->num_msg != 1 || (pam_cookie->msg[0]->msg_style != PAM_PROMPT_ECHO_OFF &&