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:
Thorsten Kukuk 2005-07-06 08:07:32 +00:00
parent 2d2c78b50c
commit 60d37e7181
2 changed files with 1 additions and 2 deletions

View File

@ -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)

View File

@ -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++)