aboutsummaryrefslogtreecommitdiff
path: root/lib/http_ntlm.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-05-23 16:59:43 +0200
committerYang Tse <yangsita@gmail.com>2011-05-23 16:59:43 +0200
commite2747ebbc0415062e659490484ff770c78e7bed9 (patch)
tree308161d09a6ddfb7ac814f776e847f8480792518 /lib/http_ntlm.c
parent41ebda02b2062b0752f9723aaa5d545384165905 (diff)
compiler warning: fix
Fix missing semicolon
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 b0b49253f..cb7ef2c3b 100644
--- a/lib/http_ntlm.c
+++ b/lib/http_ntlm.c
@@ -1269,7 +1269,7 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,
/* convert domain, user, and host to ASCII but leave the rest as-is */
res = Curl_convert_to_network(conn->data, (char *)&ntlmbuf[domoff],
- size-domoff)
+ size-domoff);
if(res)
return CURLE_CONV_FAILED;