hushing up more warnings
authorDaniel Stenberg <daniel@haxx.se>
Mon, 14 Mar 2005 15:51:10 +0000 (15:51 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 14 Mar 2005 15:51:10 +0000 (15:51 +0000)
lib/http_ntlm.c
lib/if2ip.c

index 679289db67168d8c2b7acba784421af8cf09fbe6..73f3d3d96a4a35e75130ced95de6e0e3b3b45e06 100644 (file)
@@ -412,15 +412,15 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,
        */
       ntlm->p_identity = &ntlm->identity;
       memset(ntlm->p_identity, 0, sizeof(*ntlm->p_identity));
-      if ((ntlm->identity.User = strdup(user)) == NULL)
+      if ((ntlm->identity.User = (unsigned char *)strdup(user)) == NULL)
         return CURLE_OUT_OF_MEMORY;
       ntlm->identity.UserLength = strlen(user);
-      if ((ntlm->identity.Password = strdup(passwdp)) == NULL)
+      if ((ntlm->identity.Password = (unsigned char *)strdup(passwdp)) == NULL)
         return CURLE_OUT_OF_MEMORY;
       ntlm->identity.PasswordLength = strlen(passwdp);
       if ((ntlm->identity.Domain = malloc(domlen+1)) == NULL)
         return CURLE_OUT_OF_MEMORY;
-      strncpy(ntlm->identity.Domain, domain, domlen);
+      strncpy((char *)ntlm->identity.Domain, domain, domlen);
       ntlm->identity.Domain[domlen] = '\0';
       ntlm->identity.DomainLength = domlen;
       ntlm->identity.Flags = SEC_WINNT_AUTH_IDENTITY_ANSI;
@@ -430,7 +430,7 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,
     }
 
     if (AcquireCredentialsHandle(
-          NULL, "NTLM", SECPKG_CRED_OUTBOUND, NULL, ntlm->p_identity,
+          NULL, (char *)"NTLM", SECPKG_CRED_OUTBOUND, NULL, ntlm->p_identity,
           NULL, NULL, &ntlm->handle, NULL
         ) != SEC_E_OK) {
       return CURLE_OUT_OF_MEMORY;
index 8f0a07782fb923a1a345d79c076041ac3b9385a0..db28e4aad9a76e534e72d07d832d669a5e094797 100644 (file)
@@ -31,6 +31,8 @@
 #include <unistd.h>
 #endif
 
+#include "if2ip.h"
+
 #if !defined(WIN32) && !defined(__BEOS__) && !defined(__CYGWIN32__) && \
     !defined(__riscos__) && !defined(__INTERIX) && !defined(NETWARE)
 
@@ -55,7 +57,6 @@
 #include <sys/ioctl.h>
 #endif
 
-/* -- if2ip() -- */
 #ifdef HAVE_NETDB_H
 #include <netdb.h>
 #endif
@@ -72,7 +73,6 @@
 #include <inet.h>
 #endif
 
-#include "if2ip.h"
 #include "memory.h"
 
 /* The last #include file should be: */