summaryrefslogtreecommitdiff
path: root/auth-pam.c
diff options
context:
space:
mode:
authorstevesk <stevesk>2001-10-28 17:32:38 +0000
committerstevesk <stevesk>2001-10-28 17:32:38 +0000
commit56a85e297d4873fe055e4e26d76a8427e8770a4d (patch)
tree8ecf718f8c4971332986765052a60a445d82936e /auth-pam.c
parent8b80929d9ee3c5d56d4106183cd41ddd51d6febf (diff)
downloadopenssh-56a85e297d4873fe055e4e26d76a8427e8770a4d.tar.gz
- (stevesk) Fix compile problem with PAM password change fix
Diffstat (limited to 'auth-pam.c')
-rw-r--r--auth-pam.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth-pam.c b/auth-pam.c
index 08ba132a..29d35667 100644
--- a/auth-pam.c
+++ b/auth-pam.c
@@ -35,7 +35,7 @@
extern char *__progname;
-RCSID("$Id: auth-pam.c,v 1.39 2001/10/28 11:36:56 djm Exp $");
+RCSID("$Id: auth-pam.c,v 1.40 2001/10/28 17:32:38 stevesk Exp $");
#define NEW_AUTHTOK_MSG \
"Warning: Your password has expired, please change it now"
@@ -147,8 +147,8 @@ static int do_pam_conversation(int num_msg, const struct pam_message **msg,
break;
case PAM_PROMPT_ECHO_OFF:
reply[count].resp =
- read_passphrase(PAM_MSG_MEMBER(msg, count,
- msg), RP_ALLOW_STDIN));
+ read_passphrase(PAM_MSG_MEMBER(msg, count,
+ msg), RP_ALLOW_STDIN);
reply[count].resp_retcode = PAM_SUCCESS;
break;
case PAM_ERROR_MSG: