diff options
author | Steve Holme <steve_holme@hotmail.com> | 2019-04-15 22:38:20 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2019-04-15 22:38:20 +0100 |
commit | d84da52d9f66eb17236062a5c1e19736b32859d7 (patch) | |
tree | 3f60499b54563b0f16c7d0b327243496de96c3b9 /lib/md5.c | |
parent | 90d9e9460e44c9e0a9288cf79bc278b313469c7b (diff) | |
download | curl-d84da52d9f66eb17236062a5c1e19736b32859d7.tar.gz |
md5: Return CURLcode from the internally accessible functions
Following 28f826b3 to return CURLE_OK instead of numeric 0.
Diffstat (limited to 'lib/md5.c')
-rw-r--r-- | lib/md5.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -545,7 +545,7 @@ MD5_context *Curl_MD5_init(const MD5_params *md5params) return ctxt; } -int Curl_MD5_update(MD5_context *context, +CURLcode Curl_MD5_update(MD5_context *context, const unsigned char *data, unsigned int len) { @@ -554,7 +554,7 @@ int Curl_MD5_update(MD5_context *context, return CURLE_OK; } -int Curl_MD5_final(MD5_context *context, unsigned char *result) +CURLcode Curl_MD5_final(MD5_context *context, unsigned char *result) { (*context->md5_hash->md5_final_func)(result, context->md5_hashctx); |