summaryrefslogtreecommitdiff
path: root/entropy.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-02-27 11:00:52 +1100
committerDamien Miller <djm@mindrot.org>2001-02-27 11:00:52 +1100
commit3456d32a9259038fd64d21f33d43489197bae975 (patch)
treefc8438c879f4d01097df16e8849622ec27d608d7 /entropy.c
parent9b40580d762f660230ebbe4fc7121a94cbebae58 (diff)
downloadopenssh-git-3456d32a9259038fd64d21f33d43489197bae975.tar.gz
avoid warning
Diffstat (limited to 'entropy.c')
-rw-r--r--entropy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/entropy.c b/entropy.c
index 04fdc5cc..3b0893b3 100644
--- a/entropy.c
+++ b/entropy.c
@@ -40,7 +40,7 @@
#include "pathnames.h"
#include "log.h"
-RCSID("$Id: entropy.c,v 1.33 2001/02/26 22:47:16 djm Exp $");
+RCSID("$Id: entropy.c,v 1.34 2001/02/27 00:00:52 djm Exp $");
#ifndef offsetof
# define offsetof(type, member) ((size_t) &((type *)0)->member)
@@ -71,8 +71,8 @@ RCSID("$Id: entropy.c,v 1.33 2001/02/26 22:47:16 djm Exp $");
void check_openssl_version(void)
{
if (SSLeay() != OPENSSL_VERSION_NUMBER)
- fatal("OpenSSL version mismatch. Built against %x, you "
- "have %x", OPENSSL_VERSION_NUMBER, SSLeay());
+ fatal("OpenSSL version mismatch. Built against %lx, you "
+ "have %lx", OPENSSL_VERSION_NUMBER, SSLeay());
}