diff options
Diffstat (limited to 'src/hash/hash_openssl.h')
| -rw-r--r-- | src/hash/hash_openssl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hash/hash_openssl.h b/src/hash/hash_openssl.h index 9a32cba2a..8dbfd5ad5 100644 --- a/src/hash/hash_openssl.h +++ b/src/hash/hash_openssl.h @@ -29,7 +29,7 @@ GIT_INLINE(int) git_hash_init(git_hash_ctx *ctx) assert(ctx); if (SHA1_Init(&ctx->c) != 1) { - giterr_set(GITERR_SHA1, "hash_openssl: failed to initialize hash context"); + git_error_set(GIT_ERROR_SHA1, "hash_openssl: failed to initialize hash context"); return -1; } @@ -41,7 +41,7 @@ GIT_INLINE(int) git_hash_update(git_hash_ctx *ctx, const void *data, size_t len) assert(ctx); if (SHA1_Update(&ctx->c, data, len) != 1) { - giterr_set(GITERR_SHA1, "hash_openssl: failed to update hash"); + git_error_set(GIT_ERROR_SHA1, "hash_openssl: failed to update hash"); return -1; } @@ -53,7 +53,7 @@ GIT_INLINE(int) git_hash_final(git_oid *out, git_hash_ctx *ctx) assert(ctx); if (SHA1_Final(out->id, &ctx->c) != 1) { - giterr_set(GITERR_SHA1, "hash_openssl: failed to finalize hash"); + git_error_set(GIT_ERROR_SHA1, "hash_openssl: failed to finalize hash"); return -1; } |
