1
0
mirror of git://anongit.mindrot.org/openssh.git synced 2025-04-01 00:06:45 +00:00

- (djm) Fix bad fprintf format handling in auth-pam.c. Patch from

Aaron Hopkins <aaron@die.net>
This commit is contained in:
Damien Miller 2000-07-08 10:14:08 +10:00
parent 0809a0a586
commit ce40c70f17
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
20000708
- (djm) Fix bad fprintf format handling in auth-pam.c. Patch from
Aaron Hopkins <aaron@die.net>
20000702 20000702
- (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com> - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
- (djm) Stop shadow expiry checking from preventing logins with NIS. Based - (djm) Stop shadow expiry checking from preventing logins with NIS. Based

View File

@ -34,7 +34,7 @@
#include "xmalloc.h" #include "xmalloc.h"
#include "servconf.h" #include "servconf.h"
RCSID("$Id: auth-pam.c,v 1.8 2000/06/22 11:44:54 djm Exp $"); RCSID("$Id: auth-pam.c,v 1.9 2000/07/08 00:14:08 djm Exp $");
#define NEW_AUTHTOK_MSG \ #define NEW_AUTHTOK_MSG \
"Warning: You password has expired, please change it now" "Warning: You password has expired, please change it now"
@ -277,7 +277,7 @@ char **fetch_pam_environment(void)
void print_pam_messages(void) void print_pam_messages(void)
{ {
if (pam_msg != NULL) if (pam_msg != NULL)
fprintf(stderr, pam_msg); fputs(stderr, pam_msg);
} }
/* Append a message to the PAM message buffer */ /* Append a message to the PAM message buffer */