summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsteve <steve>2003-09-10 00:44:52 +0000
committersteve <steve>2003-09-10 00:44:52 +0000
commit24606e2e5c0b479ab72b3da9d058ca83ce200ab6 (patch)
treea26e679667482fb32354c8a1520313191dfc8985
parent2746201aa3a1e2dde471051e78d77bef4e91dbd9 (diff)
downloadopenssl-24606e2e5c0b479ab72b3da9d058ca83ce200ab6.tar.gz
Use BIO_snprintf() instead of snprintf().
Update hashes.
-rw-r--r--fips/fingerprint.sha12
-rw-r--r--fips/fips.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/fips/fingerprint.sha1 b/fips/fingerprint.sha1
index f5e87f7b0..84374ff62 100644
--- a/fips/fingerprint.sha1
+++ b/fips/fingerprint.sha1
@@ -1,4 +1,4 @@
-SHA1(fips.c)= 91fb8b7ed124c09b76faffd934523e4eef93edf1
+SHA1(fips.c)= e41f98ed7cd7dbd3c45b91db526dafb7ebc3550c
SHA1(fips_err_wrapper.c)= 527047304bfaa75f6ace20b4f7ac3afb6d89d480
SHA1(fips.h)= 58386539af75f8f622b041a43bf1880fee8642f7
SHA1(fips_err.h)= 8d9fd3ab3e6ca5297c5714e7f6cd9834e22b4cba
diff --git a/fips/fips.c b/fips/fips.c
index da222b53e..980520e40 100644
--- a/fips/fips.c
+++ b/fips/fips.c
@@ -94,7 +94,7 @@ static int FIPS_check_exe(const char *path)
} while(n > 0);
BIO_gets(md,mdbuf,EVP_MAX_MD_SIZE);
BIO_free_all(bio);
- snprintf(p2,sizeof p2,"%s.sha1",path);
+ BIO_snprintf(p2,sizeof p2,"%s.sha1",path);
bio=BIO_new_file(p2,"rb");
if(!bio || BIO_read(bio,buf,20) != 20)
{