diff options
author | Yang Tse <yangsita@gmail.com> | 2011-05-23 16:59:43 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-05-23 16:59:43 +0200 |
commit | e2747ebbc0415062e659490484ff770c78e7bed9 (patch) | |
tree | 308161d09a6ddfb7ac814f776e847f8480792518 /lib | |
parent | 41ebda02b2062b0752f9723aaa5d545384165905 (diff) |
compiler warning: fix
Fix missing semicolon
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http_ntlm.c | 2 |
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; |