diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-04-29 08:13:26 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-04-29 08:13:26 +0000 |
commit | 3462e12191c78ef168a1e72b39affba0b511f493 (patch) | |
tree | fc5e0b6864ebdea60aaac7dd4adfc6c2a7db50bf | |
parent | 5fd4e6dd66443119070b41c226809d263a6d0d23 (diff) | |
download | pam-3462e12191c78ef168a1e72b39affba0b511f493.tar.gz pam-3462e12191c78ef168a1e72b39affba0b511f493.tar.bz2 pam-3462e12191c78ef168a1e72b39affba0b511f493.zip |
Relevant BUGIDs: none
Purpose of commit: cleanup
Commit summary:
---------------
Set PAM_DEFAULT_PROMPT to "login: " as already done by all
Linux distributors.
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | libpam/pam_private.h | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -69,6 +69,7 @@ BerliOS Bugs are marked with (BerliOS #XXXX). with expect scripts (t8m) * pam_unix: nis option shouldn't clear the shadow option (t8m) * cleanups and minor bugfixes by Steve Grubb (t8m) +* pam_private.h: set PAM_DEFAULT_PROMPT to "login: " (kukuk) 0.79: Thu Mar 31 16:48:45 CEST 2005 * pam_tally: added audit option (toady) diff --git a/libpam/pam_private.h b/libpam/pam_private.h index 1fbd9812..b795f6f7 100644 --- a/libpam/pam_private.h +++ b/libpam/pam_private.h @@ -272,7 +272,7 @@ if ((pamh) == NULL) { \ /* Definition for the default username prompt used by pam_get_user() */ -#define PAM_DEFAULT_PROMPT "Please enter username: " +#define PAM_DEFAULT_PROMPT "login: " /* * include some helpful macros |