diff options
author | Tim Potter <tpot@samba.org> | 2002-09-23 21:24:31 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-09-23 21:24:31 +0000 |
commit | af78eafa6cd8cf5e43c0c4104a3944855e35743f (patch) | |
tree | a631006472230706825b0ac2728edc229019e354 /source3/client | |
parent | 2b6057ef1f9fbfb583a2f77e3b5d3aee2c115fe4 (diff) | |
download | samba-af78eafa6cd8cf5e43c0c4104a3944855e35743f.tar.gz samba-af78eafa6cd8cf5e43c0c4104a3944855e35743f.tar.bz2 samba-af78eafa6cd8cf5e43c0c4104a3944855e35743f.zip |
Don't uppercase the username and domain in a session setup.
(This used to be commit 0ad19825df318030b1772404570cd993fe49e40a)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 7afd8f25bc..eb6b572760 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2758,7 +2758,6 @@ static void remember_query_host(const char *arg, got_pass = True; memset(strchr_m(getenv("USER"),'%')+1,'X',strlen(password)); } - strupper(username); } /* modification to support PASSWD environmental var @@ -2775,7 +2774,6 @@ static void remember_query_host(const char *arg, if (*username == 0 && getenv("LOGNAME")) { pstrcpy(username,getenv("LOGNAME")); - strupper(username); } if (*username == 0) { |