summaryrefslogtreecommitdiff
path: root/src/http-ntlm.c
diff options
context:
space:
mode:
authorhniksic <devnull@localhost>2005-04-21 07:00:11 -0700
committerhniksic <devnull@localhost>2005-04-21 07:00:11 -0700
commit2a7d81ac934d31592048abe6075d3daaaa9dc2a0 (patch)
tree7411d3f8c85e0dbe18983616a5aca9d490b9c10d /src/http-ntlm.c
parent82c9f4f588a9718aab28132b48f8d1dd8212f3db (diff)
downloadwget-2a7d81ac934d31592048abe6075d3daaaa9dc2a0.tar.gz
[svn] Fix setting the NTLM domain.
By Sami Krank.
Diffstat (limited to 'src/http-ntlm.c')
-rw-r--r--src/http-ntlm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http-ntlm.c b/src/http-ntlm.c
index 9f17e9eb..91ca0280 100644
--- a/src/http-ntlm.c
+++ b/src/http-ntlm.c
@@ -417,7 +417,7 @@ char *ntlm_output (struct ntlmdata *ntlm, const char *user, const char *passwd,
usr = strchr(user, '/');
if (usr) {
- domain = usr;
+ domain = user;
domlen = usr - domain;
usr++;
}