diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-09-24 17:20:34 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-09-28 10:22:50 +1000 |
commit | 9e326487687d1d2077964951093f49c9cddbff21 (patch) | |
tree | f322e8d9f5e152dcd97a04eb4412c470b52e3ce6 /source4/dsdb/common | |
parent | 5acd8bc01b23d6fc3d83eea9c3307feb7210879f (diff) | |
download | samba-9e326487687d1d2077964951093f49c9cddbff21.tar.gz samba-9e326487687d1d2077964951093f49c9cddbff21.tar.bz2 samba-9e326487687d1d2077964951093f49c9cddbff21.zip |
s4-dsdb: make dsdb_search_dn_with_deleted public for repl_meta_data module
Diffstat (limited to 'source4/dsdb/common')
-rw-r--r-- | source4/dsdb/common/util.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index 52ba40b02f..b6b90c9828 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -2187,11 +2187,11 @@ int dsdb_find_dn_by_guid(struct ldb_context *ldb, /* search for attrs on one DN, allowing for deleted objects */ -static int dsdb_search_dn_with_deleted(struct ldb_context *ldb, - TALLOC_CTX *mem_ctx, - struct ldb_result **_res, - struct ldb_dn *basedn, - const char * const *attrs) +int dsdb_search_dn_with_deleted(struct ldb_context *ldb, + TALLOC_CTX *mem_ctx, + struct ldb_result **_res, + struct ldb_dn *basedn, + const char * const *attrs) { int ret; struct ldb_request *req; |