diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-12-09 22:39:03 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-12-09 22:39:03 +0000 |
commit | 97c9cd159d080814e56508fcc4ad0032f5f8023c (patch) | |
tree | 322298aa32b0c45e006cbfd26731f0c91c5f4e40 /modules/pam_unix/pam_unix_auth.c | |
parent | da67a7d6126846939fd43b1ddb5aa8c06ee09301 (diff) | |
download | pam-97c9cd159d080814e56508fcc4ad0032f5f8023c.tar.gz pam-97c9cd159d080814e56508fcc4ad0032f5f8023c.tar.bz2 pam-97c9cd159d080814e56508fcc4ad0032f5f8023c.zip |
Relevant BUGIDs: 486361
Purpose of commit: bugfix
Commit summary:
---------------
pam_unix is too generic a module to override the PAM_USER_PROMPT item.
(More modifications to xsh to help me test this change.)
Diffstat (limited to 'modules/pam_unix/pam_unix_auth.c')
-rw-r--r-- | modules/pam_unix/pam_unix_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_unix/pam_unix_auth.c b/modules/pam_unix/pam_unix_auth.c index 319f4f05..67497e06 100644 --- a/modules/pam_unix/pam_unix_auth.c +++ b/modules/pam_unix/pam_unix_auth.c @@ -119,7 +119,7 @@ PAM_EXTERN int pam_sm_authenticate(pam_handle_t * pamh, int flags /* get the user'name' */ - retval = pam_get_user(pamh, &name, "login: "); + retval = pam_get_user(pamh, &name, NULL); if (retval == PAM_SUCCESS) { /* * Various libraries at various times have had bugs related to |