diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-04-06 16:11:17 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-04-06 16:32:28 +0100 |
commit | 537b571c902297a0b287a613400628532462e7d9 (patch) | |
tree | fe3ef01afb81bad35948332dab89704829267726 | |
parent | fe15ea67ccf67b63cacb7d93c0eeef26a9d117d0 (diff) |
sasl: Fixed compilation warning
warning: no previous prototype for 'Curl_sasl_create_digest_md5_message'
-rw-r--r-- | lib/curl_sasl_sspi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/curl_sasl_sspi.c b/lib/curl_sasl_sspi.c index 70c4c1877..2c14afdd9 100644 --- a/lib/curl_sasl_sspi.c +++ b/lib/curl_sasl_sspi.c @@ -29,6 +29,7 @@ #include <curl/curl.h> +#include "curl_sasl.h" #include "urldata.h" #include "curl_base64.h" #include "warnless.h" |