aboutsummaryrefslogtreecommitdiff
path: root/lib/http_ntlm.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-23 08:07:55 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-23 08:07:55 +0000
commit1aba4c519b5389c2930075d4f555a003904a0431 (patch)
treeb918a3697d5cbf83ef9dd98b0f326582fad78997 /lib/http_ntlm.c
parentae76a675660a48d462922ff5cb7e2001f6d4cff6 (diff)
The base64 encode function now takes a size_t for size, not an int as
previously.
Diffstat (limited to 'lib/http_ntlm.c')
-rw-r--r--lib/http_ntlm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c
index 5a6fba790..44fe01397 100644
--- a/lib/http_ntlm.c
+++ b/lib/http_ntlm.c
@@ -286,7 +286,7 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,
int hostlen = strlen(host);
int hostoff; /* host name offset */
int domoff; /* domain name offset */
- int size;
+ size_t size;
char *base64=NULL;
unsigned char ntlmbuf[256]; /* enough, unless the host/domain is very long */