diff options
Diffstat (limited to 'libbb/pw_encrypt_sha.c')
-rw-r--r-- | libbb/pw_encrypt_sha.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/pw_encrypt_sha.c b/libbb/pw_encrypt_sha.c index e71f96fdc..070e0d442 100644 --- a/libbb/pw_encrypt_sha.c +++ b/libbb/pw_encrypt_sha.c | |||
@@ -20,7 +20,7 @@ sha_crypt(/*const*/ char *key_data, /*const*/ char *salt_data) | |||
20 | { | 20 | { |
21 | void (*sha_begin)(void *ctx) FAST_FUNC; | 21 | void (*sha_begin)(void *ctx) FAST_FUNC; |
22 | void (*sha_hash)(const void *buffer, size_t len, void *ctx) FAST_FUNC; | 22 | void (*sha_hash)(const void *buffer, size_t len, void *ctx) FAST_FUNC; |
23 | void* (*sha_end)(void *resbuf, void *ctx) FAST_FUNC; | 23 | void (*sha_end)(void *resbuf, void *ctx) FAST_FUNC; |
24 | int _32or64; | 24 | int _32or64; |
25 | 25 | ||
26 | char *result, *resptr; | 26 | char *result, *resptr; |