From 4f10666295ff7c086ac2a38e0a5f0ac80b57b9a0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Fri, 17 Dec 2004 13:14:22 +0000 Subject: [PATCH] r4258: strlower username, not (non-existing) domain_username. Guenther --- source/nsswitch/winbindd_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/nsswitch/winbindd_util.c b/source/nsswitch/winbindd_util.c index 7cbcba12453..1f727dd18d5 100644 --- a/source/nsswitch/winbindd_util.c +++ b/source/nsswitch/winbindd_util.c @@ -641,7 +641,7 @@ BOOL parse_domain_user(const char *domuser, fstring domain, fstring user) */ void fill_domain_username(fstring name, const char *domain, const char *user) { - strlower_m( name ); + strlower_m( user ); if (assume_domain(domain)) { strlcpy(name, user, sizeof(fstring)); -- 2.47.3