summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2009-11-05 20:43:16 +1100
committerDarren Tucker <dtucker@zip.com.au>2009-11-05 20:43:16 +1100
commite89ed1cfcae65705b48d3741873d8ab1f76a6cf7 (patch)
treef95160a1cfcfe9d1591c25f2203042e5a7aab2f0
parent4d6656b1030c2090f8769ce9cce0a9e5dd135945 (diff)
- (dtucker) [authfile.c] Add OpenSSL compat header so this still builds with
older versions of OpenSSL.
-rw-r--r--ChangeLog4
-rw-r--r--authfile.c3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 37c92818..1bdeea27 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20091105
+ - (dtucker) [authfile.c] Add OpenSSL compat header so this still builds with
+ older versions of OpenSSL.
+
20091024
- (dtucker) OpenBSD CVS Sync
- djm@cvs.openbsd.org 2009/10/11 23:03:15
diff --git a/authfile.c b/authfile.c
index 22df6c64..fc12c00c 100644
--- a/authfile.c
+++ b/authfile.c
@@ -47,6 +47,9 @@
#include <openssl/evp.h>
#include <openssl/pem.h>
+/* compatibility with old or broken OpenSSL versions */
+#include "openbsd-compat/openssl-compat.h"
+
#include <errno.h>
#include <fcntl.h>
#include <stdarg.h>