mirror of
https://github.com/linux-pam/linux-pam.git
synced 2024-11-28 12:14:07 +08:00
Relevant BUGIDs: mail report
Purpose of commit: bugfix Commit summary: --------------- Don't lowercase login names. Using uppercase login names is a bad idea, but people are doing it.
This commit is contained in:
parent
2d2c78b50c
commit
60d37e7181
@ -89,6 +89,7 @@ BerliOS Bugs are marked with (BerliOS #XXXX).
|
||||
strict-aliasing rules warnings (kukuk)
|
||||
* pam_limits: Support new limits in linux 2.6.12 (t8m)
|
||||
* pam_mkhomedir: change mode datatype (toady)
|
||||
* pam_limits: Don't lowercase login names (kukuk)
|
||||
|
||||
0.79: Thu Mar 31 16:48:45 CEST 2005
|
||||
* pam_tally: added audit option (toady)
|
||||
|
@ -495,8 +495,6 @@ static int parse_config_file(pam_handle_t *pamh, const char *uname, int ctrl,
|
||||
D(("scanned line[%d]: domain[%s], ltype[%s], item[%s], value[%s]",
|
||||
i, domain, ltype, item, value));
|
||||
|
||||
for(j=0; j < strlen(domain); j++)
|
||||
domain[j]=tolower(domain[j]);
|
||||
for(j=0; j < strlen(ltype); j++)
|
||||
ltype[j]=tolower(ltype[j]);
|
||||
for(j=0; j < strlen(item); j++)
|
||||
|
Loading…
Reference in New Issue
Block a user