aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2018-02-27 09:17:06 +0100
committerAndreas Schneider <asn@samba.org>2018-02-27 09:47:03 +0100
commita15c28edf44c580e5c8c44b57951addcd79e145f (patch)
tree8e37b0454a11395b73079bbcf9153858d3bcae56
parentec35a73f1512663397ee32746f73ddc79bf7a361 (diff)
downloadpam_wrapper-a15c28edf44c580e5c8c44b57951addcd79e145f.tar.gz
pam_wrapper-a15c28edf44c580e5c8c44b57951addcd79e145f.tar.xz
pam_wrapper-a15c28edf44c580e5c8c44b57951addcd79e145f.zip
pwrap: Add missing config.h includes
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
-rw-r--r--src/libpamtest.c2
-rw-r--r--src/python/pypamtest.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/libpamtest.c b/src/libpamtest.c
index c0ab41d..0a26c19 100644
--- a/src/libpamtest.c
+++ b/src/libpamtest.c
@@ -16,6 +16,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "config.h"
+
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
diff --git a/src/python/pypamtest.c b/src/python/pypamtest.c
index e25900f..6bb1e20 100644
--- a/src/python/pypamtest.c
+++ b/src/python/pypamtest.c
@@ -16,6 +16,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "config.h"
+
#include <Python.h>
#include <structmember.h>