summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2016-04-04 11:07:59 +1000
committerDarren Tucker <dtucker@zip.com.au>2016-04-04 11:07:59 +1000
commit815bcac0b94bb448de5acdd6ba925b8725240b4f (patch)
tree89da494eb7539e8ce3ccbbf24987c0af877f19c8
parent95687f5831ae680f7959446d8ae4b52452ee05dd (diff)
Fix configure-time warnings for openssl test.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 7258cc0e5..32d4c2f65 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2428,8 +2428,8 @@ if test "x$openssl" = "xyes" ; then
2428 if(fd == NULL) 2428 if(fd == NULL)
2429 exit(1); 2429 exit(1);
2430 2430
2431 if ((rc = fprintf(fd ,"%08x (%s)\n", SSLeay(), 2431 if ((rc = fprintf(fd, "%08lx (%s)\n", (unsigned long)SSLeay(),
2432 SSLeay_version(SSLEAY_VERSION))) <0) 2432 SSLeay_version(SSLEAY_VERSION))) < 0)
2433 exit(1); 2433 exit(1);
2434 2434
2435 exit(0); 2435 exit(0);