explicit typecasts to prevent warnings
authorDaniel Stenberg <daniel@haxx.se>
Sun, 4 Jul 2004 21:54:49 +0000 (21:54 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 4 Jul 2004 21:54:49 +0000 (21:54 +0000)
lib/http_ntlm.c

index 8f2a3fd..dc31e83 100644 (file)
@@ -547,8 +547,8 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,
     }
 #endif
 
-    ntlmbuf[56] = size & 0xff;
-    ntlmbuf[57] = size >> 8;
+    ntlmbuf[56] = (unsigned char)(size & 0xff);
+    ntlmbuf[57] = (unsigned char)(size >> 8);
 
     /* convert the binary blob into base64 */
     size = Curl_base64_encode((char *)ntlmbuf, size, &base64);