diff options
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | libextra/fipsmd5.c | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -91,6 +91,7 @@ Kevin Quick <quick@sparq.org> Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com> Jonathan Manktelow <jonathan@dyalog.com> Thomas Viehmann <tv@beamnet.de> +Aaron Ucko <ucko@ncbi.nlm.nih.gov> ---------------------------------------------------------------------- Copying and distribution of this file, with or without modification, diff --git a/libextra/fipsmd5.c b/libextra/fipsmd5.c index 3edc3f46d9..114c396fd5 100644 --- a/libextra/fipsmd5.c +++ b/libextra/fipsmd5.c @@ -194,7 +194,7 @@ hmacmd5deinit (void *ctx) gnutls_free (p); } -gnutls_crypto_single_digest_st dig = { +static gnutls_crypto_single_digest_st dig = { md5init, NULL, md5hash, @@ -203,7 +203,7 @@ gnutls_crypto_single_digest_st dig = { md5deinit }; -gnutls_crypto_single_mac_st mac = { +static gnutls_crypto_single_mac_st mac = { hmacmd5init, hmacmd5setkey, hmacmd5hash, |