diff options
Diffstat (limited to 'source3/nsswitch/winbindd_user.c')
-rw-r--r-- | source3/nsswitch/winbindd_user.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/nsswitch/winbindd_user.c b/source3/nsswitch/winbindd_user.c index 76cf9d44bd..e386efedb3 100644 --- a/source3/nsswitch/winbindd_user.c +++ b/source3/nsswitch/winbindd_user.c @@ -241,6 +241,9 @@ static void getpwsid_queryuser_recv(void *private_data, BOOL success, fstrcpy( username, acct_name ); strlower_m( username ); s->username = talloc_strdup(s->state->mem_ctx, username); + + ws_name_replace( s->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); |