summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2013-06-07 17:30:58 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2013-06-07 17:30:58 +0200
commit45ecaa552432b683a2138f852cca0dc3fbc672e5 (patch)
treef1b0cb1f3ade89c3be671cf496e7bc433cd68d03
parentf9abcda006eb71f30df14218a4a2588dbc41ceb5 (diff)
downloadeurephia-45ecaa552432b683a2138f852cca0dc3fbc672e5.tar.gz
eurephia-45ecaa552432b683a2138f852cca0dc3fbc672e5.tar.xz
eurephia-45ecaa552432b683a2138f852cca0dc3fbc672e5.zip
eurephiadm: Added needed include files to be buildable
This is related to that certinfo has been extended and now need to pull in the openssl/x509.h to compile properly. Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
-rw-r--r--eurephiadm/commands/certificates.c1
-rw-r--r--eurephiadm/commands/users.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/eurephiadm/commands/certificates.c b/eurephiadm/commands/certificates.c
index 828bdef..1eb7f18 100644
--- a/eurephiadm/commands/certificates.c
+++ b/eurephiadm/commands/certificates.c
@@ -38,6 +38,7 @@
#include <unistd.h>
#include <errno.h>
#include <assert.h>
+#include <openssl/x509.h>
#ifdef HAVE_LIBXML2
#include <libxml/tree.h>
diff --git a/eurephiadm/commands/users.c b/eurephiadm/commands/users.c
index 52cf253..517a485 100644
--- a/eurephiadm/commands/users.c
+++ b/eurephiadm/commands/users.c
@@ -33,6 +33,7 @@
#include <sys/stat.h>
#include <errno.h>
#include <assert.h>
+#include <openssl/x509.h>
#ifdef HAVE_LIBXML2
#include <libxml/tree.h>