diff options
author | Steve Holme <steve_holme@hotmail.com> | 2019-04-14 08:42:36 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2019-04-14 08:42:36 +0100 |
commit | 28f826b3bff05791bf11e5b96c68cc0fee4ca7df (patch) | |
tree | 2e88bcc2436e6086a0e931fb047ea7e615639ead | |
parent | 51b81e9b6e76b8422b556645f390578a9cc20f32 (diff) |
md5: Code style to return CURLE_OK rather than numeric 0
-rw-r--r-- | lib/md5.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -551,7 +551,7 @@ int Curl_MD5_update(MD5_context *context, { (*context->md5_hash->md5_update_func)(context->md5_hashctx, data, len); - return 0; + return CURLE_OK; } int Curl_MD5_final(MD5_context *context, unsigned char *result) @@ -561,7 +561,7 @@ int Curl_MD5_final(MD5_context *context, unsigned char *result) free(context->md5_hashctx); free(context); - return 0; + return CURLE_OK; } #endif /* CURL_DISABLE_CRYPTO_AUTH */ |