[svn] Fix setting the NTLM domain.

By Sami Krank.
This commit is contained in:
hniksic 2005-04-21 07:00:11 -07:00
parent 82c9f4f588
commit 2a7d81ac93
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-04-21 Hrvoje Niksic <hniksic@xemacs.org>
* http-ntlm.c (ntlm_output): Fix setting the domain.
Suggested by Sami Krank.
2005-04-20 Mauro Tortonesi <mauro@ferrara.linux.it>
* connect.c: Set IPV6_V6ONLY socket option when -6 switch is used.

View File

@ -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++;
}