diff options
author | monnerat <pm@datasphere.ch> | 2010-04-19 12:44:17 +0200 |
---|---|---|
committer | monnerat <pm@datasphere.ch> | 2010-04-19 12:44:17 +0200 |
commit | 14bfcb96f58396daec1866b0ca8de7e34f36e6f3 (patch) | |
tree | c41d9718b77486478a623580d9ed6d3b90e33fe2 /lib | |
parent | 87fbcb4494dc942e38396e71a3c9c633d779a8f1 (diff) | |
download | curl-14bfcb96f58396daec1866b0ca8de7e34f36e6f3.tar.gz |
Fix compilation problem: declare Curl_HMAC_MD5 as extern in include file.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/curl_md5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_md5.h b/lib/curl_md5.h index cd520bc9d..ddc61e3e5 100644 --- a/lib/curl_md5.h +++ b/lib/curl_md5.h @@ -25,7 +25,7 @@ #ifndef CURL_DISABLE_CRYPTO_AUTH #include "curl_hmac.h" -const HMAC_params Curl_HMAC_MD5[1]; +extern const HMAC_params Curl_HMAC_MD5[1]; void Curl_md5it(unsigned char *output, const unsigned char *input); |