From: Steve Holme Date: Sun, 14 Apr 2019 07:42:36 +0000 (+0100) Subject: md5: Code style to return CURLE_OK rather than numeric 0 X-Git-Tag: curl-7_65_0~141 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=28f826b3bff05791bf11e5b96c68cc0fee4ca7df;p=curl md5: Code style to return CURLE_OK rather than numeric 0 --- diff --git a/lib/md5.c b/lib/md5.c index a7ef35430..36bad8908 100644 --- a/lib/md5.c +++ b/lib/md5.c @@ -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 */