summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2014-01-17 18:00:40 +1100
committerDarren Tucker <dtucker@zip.com.au>2014-01-17 18:00:40 +1100
commit1357d71d7b6d269969520aaa3e84d312ec971d5b (patch)
tree0e56e76f1bb812d0960a77d762ade2a55afc617b
parentd23a91ffb289d3553a58b7a60cec39fba9f0f506 (diff)
- (dtucker) Fix typo in #ifndef.
-rw-r--r--ChangeLog1
-rw-r--r--openbsd-compat/openssl-compat.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index be044b94..d3a15e4d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -31,6 +31,7 @@
- (dtucker) [configure.ac digest.c openbsd-compat/openssl-compat.c
openbsd-compat/openssl-compat.h] Add compatibility layer for older
openssl versions. ok djm@
+ - (dtucker) Fix typo in #ifndef.
20140118
- (djm) OpenBSD CVS Sync
diff --git a/openbsd-compat/openssl-compat.c b/openbsd-compat/openssl-compat.c
index 52c7183f..60eac4b1 100644
--- a/openbsd-compat/openssl-compat.c
+++ b/openbsd-compat/openssl-compat.c
@@ -1,4 +1,4 @@
-/* $Id: openssl-compat.c,v 1.15 2014/01/17 06:32:31 dtucker Exp $ */
+/* $Id: openssl-compat.c,v 1.16 2014/01/17 07:00:41 dtucker Exp $ */
/*
* Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au>
@@ -74,7 +74,7 @@ EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *md, void *engine)
}
#endif
-#ifndef HAVE_EVP_DISESTFINAL_EX
+#ifndef HAVE_EVP_DIGESTFINAL_EX
int
EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *s)
{