diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-06-30 15:12:29 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-06-30 15:12:29 +1000 |
commit | 49e5b83aa93176ed1c942d2bb55258be816fe983 (patch) | |
tree | 5b8278a0830b19eb7d3ccae7f098bcc051532fec /source4/lib/ldb-samba | |
parent | 89a074b784295204aa8d7dd585bf3533ac7971a7 (diff) | |
download | samba-49e5b83aa93176ed1c942d2bb55258be816fe983.tar.gz samba-49e5b83aa93176ed1c942d2bb55258be816fe983.tar.xz samba-49e5b83aa93176ed1c942d2bb55258be816fe983.zip |
s4: dsdb Avoid using the internal ldb_private.h header
This job is not complete (the partition module remains a unfinished
task), but now we do use the private ldb headers much less.
Andrew Bartlett
Diffstat (limited to 'source4/lib/ldb-samba')
-rw-r--r-- | source4/lib/ldb-samba/ldif_handlers.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/ldb-samba/ldif_handlers.c b/source4/lib/ldb-samba/ldif_handlers.c index 43cb960310e..d2f26e75105 100644 --- a/source4/lib/ldb-samba/ldif_handlers.c +++ b/source4/lib/ldb-samba/ldif_handlers.c @@ -23,7 +23,8 @@ */ #include "includes.h" -#include "lib/ldb/include/ldb_private.h" +#include "lib/ldb/include/ldb.h" +#include "lib/ldb/include/ldb_module.h" #include "ldb_handlers.h" #include "dsdb/samdb/samdb.h" #include "librpc/gen_ndr/ndr_security.h" |