diff options
author | Gerald Carter <jerry@samba.org> | 2005-08-29 21:04:22 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:03:25 -0500 |
commit | 39c05dca3c52a74924a2baccab68e289cf48ce35 (patch) | |
tree | 0a5d560f25e0991743bc7c448347d48f514b4fc0 /source3 | |
parent | c53e760ea52871b476617c6caad64ca88154ff10 (diff) | |
download | samba-39c05dca3c52a74924a2baccab68e289cf48ce35.tar.gz samba-39c05dca3c52a74924a2baccab68e289cf48ce35.tar.bz2 samba-39c05dca3c52a74924a2baccab68e289cf48ce35.zip |
r9758: make sure to lower case usernames in winbindd's getpwnam()
(This used to be commit 9fc539088eda7f9b5d212b7df50594bec51e16f5)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nsswitch/winbindd_user.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_user.c b/source3/nsswitch/winbindd_user.c index ab5da3edd0..0b88d5eee5 100644 --- a/source3/nsswitch/winbindd_user.c +++ b/source3/nsswitch/winbindd_user.c @@ -230,6 +230,7 @@ static void getpwsid_queryuser_recv(void *private_data, BOOL success, const char *shell, uint32 group_rid) { + fstring username; struct getpwsid_state *s = talloc_get_type_abort(private_data, struct getpwsid_state); @@ -240,7 +241,9 @@ static void getpwsid_queryuser_recv(void *private_data, BOOL success, return; } - s->username = talloc_strdup(s->state->mem_ctx, acct_name); + fstrcpy( username, acct_name ); + strlower_m( username ); + s->username = talloc_strdup(s->state->mem_ctx, username); s->fullname = talloc_strdup(s->state->mem_ctx, full_name); s->homedir = talloc_strdup(s->state->mem_ctx, homedir); s->shell = talloc_strdup(s->state->mem_ctx, shell); |