summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2007-05-20 15:26:07 +1000
committerDarren Tucker <dtucker@zip.com.au>2007-05-20 15:26:07 +1000
commit2216471510b3de30cb9df3e81bdfa267152ecd39 (patch)
tree09042cbcd2aef313b70ba8f8861c106bc680feaa
parent29171e9f5c094d912bd27c60b2973617e05cc785 (diff)
- (dtucker) [auth-pam.c] Return empty string if fgets fails in
sshpam_tty_conv. Patch from ldv at altlinux.org.
-rw-r--r--ChangeLog4
-rw-r--r--auth-pam.c3
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index eb9a6ebe..a2c40855 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -38,6 +38,8 @@
djm owes me a vb and a tism cd for breaking ssh compilation
- (dtucker) [auth-pam.c] malloc+memset -> calloc. Patch from
ldv at altlinux.org.
+ - (dtucker) [auth-pam.c] Return empty string if fgets fails in
+ sshpam_tty_conv. Patch from ldv at altlinux.org.
20070509
- (tim) [configure.ac] Bug #1287: Add missing test for ucred.h.
@@ -2938,4 +2940,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
-$Id: ChangeLog,v 1.4669 2007/05/20 05:20:08 dtucker Exp $
+$Id: ChangeLog,v 1.4670 2007/05/20 05:26:07 dtucker Exp $
diff --git a/auth-pam.c b/auth-pam.c
index bfd8f327..35aecbdb 100644
--- a/auth-pam.c
+++ b/auth-pam.c
@@ -984,7 +984,8 @@ sshpam_tty_conv(int n, sshpam_const struct pam_message **msg,
break;
case PAM_PROMPT_ECHO_ON:
fprintf(stderr, "%s\n", PAM_MSG_MEMBER(msg, i, msg));
- fgets(input, sizeof input, stdin);
+ if (fgets(input, sizeof input, stdin) == NULL)
+ input[0] = '\0';
if ((reply[i].resp = strdup(input)) == NULL)
goto fail;
reply[i].resp_retcode = PAM_SUCCESS;