summaryrefslogtreecommitdiffstats
path: root/src/util/crypto
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-09-21 19:10:13 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-09-24 15:15:41 +0200
commit5cd4414fce1e0eb4133dfc6fc828bf25c8a959f9 (patch)
tree517b917312730f74344dd9c1d71b1c5f9d4be9f0 /src/util/crypto
parent889442337407f85c06a88ec158047e1586675e20 (diff)
downloadsssd-5cd4414fce1e0eb4133dfc6fc828bf25c8a959f9.tar.gz
sssd-5cd4414fce1e0eb4133dfc6fc828bf25c8a959f9.tar.xz
sssd-5cd4414fce1e0eb4133dfc6fc828bf25c8a959f9.zip
Include header file in implementation module.
Declarations of public functions was in header files, but header files was not included in implementation file.
Diffstat (limited to 'src/util/crypto')
-rw-r--r--src/util/crypto/libcrypto/crypto_base64.c1
-rw-r--r--src/util/crypto/nss/nss_base64.c1
-rw-r--r--src/util/crypto/nss/nss_util.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/util/crypto/libcrypto/crypto_base64.c b/src/util/crypto/libcrypto/crypto_base64.c
index 3a119a0e9..15734a00d 100644
--- a/src/util/crypto/libcrypto/crypto_base64.c
+++ b/src/util/crypto/libcrypto/crypto_base64.c
@@ -20,6 +20,7 @@
*/
#include "util/util.h"
+#include "util/crypto/sss_crypto.h"
#include <openssl/bio.h>
#include <openssl/evp.h>
diff --git a/src/util/crypto/nss/nss_base64.c b/src/util/crypto/nss/nss_base64.c
index be3de487f..2062bfe36 100644
--- a/src/util/crypto/nss/nss_base64.c
+++ b/src/util/crypto/nss/nss_base64.c
@@ -22,6 +22,7 @@
#include "util/util.h"
#include "util/crypto/nss/nss_util.h"
+#include "util/crypto/sss_crypto.h"
#include <base64.h>
diff --git a/src/util/crypto/nss/nss_util.c b/src/util/crypto/nss/nss_util.c
index 59390eb96..9a272ca92 100644
--- a/src/util/crypto/nss/nss_util.c
+++ b/src/util/crypto/nss/nss_util.c
@@ -31,6 +31,7 @@
#include <pk11func.h>
#include "util/util.h"
+#include "util/crypto/nss/nss_util.h"
static int nspr_nss_init_done = 0;