diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-06-13 07:14:46 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-06-13 07:14:46 +0000 |
commit | caf6e9c5409557927e903c2ae4d09d11f1ef4796 (patch) | |
tree | b69ad609fa82aee96f146e06e0456adeea5c1270 /lib | |
parent | e727fb82f2cfb7fe01a2d03c7d39af60b23f842f (diff) |
use more curlish strings, these should be able to change...
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http_ntlm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index 4c2dddbb8..98e10c08a 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -286,8 +286,8 @@ static void ascii_to_unicode(unsigned char *destunicode, CURLcode Curl_output_ntlm(struct connectdata *conn) { struct SessionHandle *data=conn->data; - const char *domain="HEMMA"; - const char *host="LILLASYSTER"; + const char *domain="CURL"; + const char *host="HAXX"; int domlen=strlen(domain); int hostlen = strlen(host); int hostoff; /* host name offset */ |