diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-02-24 11:23:53 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-02-24 11:57:48 +1100 |
commit | 94c04b10db5032d83c21ea6eb8665bf930e81a9f (patch) | |
tree | 0ed6684221fb43ea2897ba2826bbecc9a024ac62 /source4 | |
parent | 8dbe665a0c0870aeb298b8f0d5a8a1a05e21a719 (diff) | |
download | samba-94c04b10db5032d83c21ea6eb8665bf930e81a9f.tar.gz samba-94c04b10db5032d83c21ea6eb8665bf930e81a9f.tar.bz2 samba-94c04b10db5032d83c21ea6eb8665bf930e81a9f.zip |
build: moved libds/common/flag_mapping.c into a common subsystem
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4')
-rw-r--r-- | source4/cldap_server/netlogon.c | 1 | ||||
-rw-r--r-- | source4/dsdb/common/util.c | 1 | ||||
-rw-r--r-- | source4/dsdb/common/util_samr.c | 2 | ||||
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/samldb.c | 1 | ||||
-rw-r--r-- | source4/dsdb/wscript_build | 4 | ||||
-rw-r--r-- | source4/rpc_server/lsa/lsa_lookup.c | 1 | ||||
-rw-r--r-- | source4/rpc_server/samr/dcesrv_samr.c | 1 |
7 files changed, 9 insertions, 2 deletions
diff --git a/source4/cldap_server/netlogon.c b/source4/cldap_server/netlogon.c index 4d3ef48a79..baac3c8dff 100644 --- a/source4/cldap_server/netlogon.c +++ b/source4/cldap_server/netlogon.c @@ -36,6 +36,7 @@ #include "lib/socket/netif.h" #include "param/param.h" #include "../lib/tsocket/tsocket.h" +#include "libds/common/flag_mapping.h" /* fill in the cldap netlogon union for a given version diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index 148a77d153..e711a324f8 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -43,6 +43,7 @@ #include "dsdb/common/util.h" #include "lib/socket/socket.h" #include "librpc/gen_ndr/irpc.h" +#include "libds/common/flag_mapping.h" /* search the sam for the specified attributes in a specific domain, filter on diff --git a/source4/dsdb/common/util_samr.c b/source4/dsdb/common/util_samr.c index 621c9be35e..02b412e433 100644 --- a/source4/dsdb/common/util_samr.c +++ b/source4/dsdb/common/util_samr.c @@ -28,6 +28,8 @@ #include "../libds/common/flags.h" #include "libcli/security/security.h" +#include "libds/common/flag_mapping.h" + /* Add a user, SAMR style, including the correct transaction * semantics. Used by the SAMR server and by pdb_samba4 */ NTSTATUS dsdb_add_user(struct ldb_context *ldb, diff --git a/source4/dsdb/samdb/ldb_modules/samldb.c b/source4/dsdb/samdb/ldb_modules/samldb.c index 710ce8bf3a..b11fc554b5 100644 --- a/source4/dsdb/samdb/ldb_modules/samldb.c +++ b/source4/dsdb/samdb/ldb_modules/samldb.c @@ -39,6 +39,7 @@ #include "librpc/gen_ndr/ndr_security.h" #include "ldb_wrap.h" #include "param/param.h" +#include "libds/common/flag_mapping.h" struct samldb_ctx; diff --git a/source4/dsdb/wscript_build b/source4/dsdb/wscript_build index f595f3c26f..364edf14b2 100644 --- a/source4/dsdb/wscript_build +++ b/source4/dsdb/wscript_build @@ -13,10 +13,10 @@ bld.SAMBA_LIBRARY('samdb', bld.SAMBA_LIBRARY('samdb-common', - source='common/util.c common/util_groups.c common/util_samr.c common/dsdb_dn.c common/dsdb_access.c ../../libds/common/flag_mapping.c', + source='common/util.c common/util_groups.c common/util_samr.c common/dsdb_dn.c common/dsdb_access.c', autoproto='common/proto.h', private_library=True, - deps='ldb NDR_DRSBLOBS UTIL_LDB LIBCLI_AUTH samba-hostconfig samba_socket LIBCLI_LDAP_NDR' + deps='ldb NDR_DRSBLOBS UTIL_LDB LIBCLI_AUTH samba-hostconfig samba_socket LIBCLI_LDAP_NDR flag_mapping' ) diff --git a/source4/rpc_server/lsa/lsa_lookup.c b/source4/rpc_server/lsa/lsa_lookup.c index 73ea72ca6a..3d472812d8 100644 --- a/source4/rpc_server/lsa/lsa_lookup.c +++ b/source4/rpc_server/lsa/lsa_lookup.c @@ -21,6 +21,7 @@ */ #include "rpc_server/lsa/lsa.h" +#include "libds/common/flag_mapping.h" static const struct { const char *domain; diff --git a/source4/rpc_server/samr/dcesrv_samr.c b/source4/rpc_server/samr/dcesrv_samr.c index a9a72a7400..25e57278d3 100644 --- a/source4/rpc_server/samr/dcesrv_samr.c +++ b/source4/rpc_server/samr/dcesrv_samr.c @@ -39,6 +39,7 @@ #include "../lib/util/util_ldb.h" #include "param/param.h" #include "lib/util/tsort.h" +#include "libds/common/flag_mapping.h" /* these query macros make samr_Query[User|Group|Alias]Info a bit easier to read */ |