diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2005-03-11 05:49:04 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2005-03-11 05:49:04 +0000 |
commit | fb9ae9d0e2e3397d3072fd89a4f103907bff1a28 (patch) | |
tree | bca97c5ca758d2a81364167b1c9b55cad0ef5500 | |
parent | dd54d8551bcfad3d4689acb539dc01438be004b4 (diff) |
Fixed some compiler warnings.
-rw-r--r-- | lib/http_ntlm.c | 2 | ||||
-rw-r--r-- | lib/url.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index fa719774c..cc04cef51 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -762,6 +762,8 @@ Curl_ntlm_cleanup(struct connectdata *conn) #ifdef USE_WINDOWS_SSPI ntlm_sspi_cleanup(&conn->ntlm); ntlm_sspi_cleanup(&conn->proxyntlm); +#else + (void)conn; #endif } @@ -130,6 +130,7 @@ void idn_free (void *ptr); /* prototype from idn-free.h, not provided by #include "url.h" #include "connect.h" #include "inet_ntop.h" +#include "http_ntlm.h" #include <ca-bundle.h> #if defined(HAVE_INET_NTOA_R) && !defined(HAVE_INET_NTOA_R_DECL) |