1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

compiler warning: fix

Fix missing semicolon
This commit is contained in:
Yang Tse 2011-05-23 16:59:43 +02:00
parent 41ebda02b2
commit e2747ebbc0

View File

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