diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/sha/sha_locl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/sha/sha_locl.h b/src/lib/libcrypto/sha/sha_locl.h index 1210176dda..08ab20d60f 100644 --- a/src/lib/libcrypto/sha/sha_locl.h +++ b/src/lib/libcrypto/sha/sha_locl.h | |||
@@ -116,9 +116,9 @@ void sha1_block_data_order (SHA_CTX *c, const void *p,size_t num); | |||
116 | #define INIT_DATA_h4 0xc3d2e1f0UL | 116 | #define INIT_DATA_h4 0xc3d2e1f0UL |
117 | 117 | ||
118 | #ifdef SHA_0 | 118 | #ifdef SHA_0 |
119 | fips_md_init(SHA) | 119 | int SHA_Init(SHA_CTX *c) |
120 | #else | 120 | #else |
121 | fips_md_init_ctx(SHA1, SHA) | 121 | int SHA1_Init(SHA_CTX *c) |
122 | #endif | 122 | #endif |
123 | { | 123 | { |
124 | memset (c,0,sizeof(*c)); | 124 | memset (c,0,sizeof(*c)); |