summaryrefslogtreecommitdiff
path: root/source4/auth
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2011-02-27 20:45:42 +0100
committerJelmer Vernooij <jelmer@samba.org>2011-02-28 21:11:21 +0100
commit31d09b13d3dc3aa204cf416bdf87eb39b7fe5de2 (patch)
tree4d820ee2c94da215c5ab0e9f8ff110edfe52452d /source4/auth
parent136c1600648f690d7709a204c4a7117bb5a868c3 (diff)
downloadsamba-31d09b13d3dc3aa204cf416bdf87eb39b7fe5de2.tar.gz
samba-31d09b13d3dc3aa204cf416bdf87eb39b7fe5de2.tar.bz2
samba-31d09b13d3dc3aa204cf416bdf87eb39b7fe5de2.zip
tdb: Use <tdb.h> to include tdb so system headers are found when building against system tdb.
Diffstat (limited to 'source4/auth')
-rw-r--r--source4/auth/credentials/pycredentials.h2
-rw-r--r--source4/auth/pyauth.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/auth/credentials/pycredentials.h b/source4/auth/credentials/pycredentials.h
index 5c3a9b2ebb..451ade6ee9 100644
--- a/source4/auth/credentials/pycredentials.h
+++ b/source4/auth/credentials/pycredentials.h
@@ -20,7 +20,7 @@
#define _PYCREDENTIALS_H_
#include "auth/credentials/credentials.h"
-#include "lib/talloc/pytalloc.h"
+#include <pytalloc.h>
extern PyTypeObject PyCredentials;
extern PyTypeObject PyCredentialCacheContainer;
diff --git a/source4/auth/pyauth.h b/source4/auth/pyauth.h
index 2d0379e6e8..38fd2a56a8 100644
--- a/source4/auth/pyauth.h
+++ b/source4/auth/pyauth.h
@@ -20,7 +20,7 @@
#ifndef _PYAUTH_H_
#define _PYAUTH_H_
-#include "lib/talloc/pytalloc.h"
+#include <pytalloc.h>
#include "auth/session.h"
#define PyAuthSession_AsSession(obj) py_talloc_get_type(obj, struct auth_session_info)