From a87dea2a0894015cf4a3140995791f5468c40038 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 10 Jul 2007 11:37:30 +0000 Subject: r23810: Make things static, and remove unsued code. This includes some of the original ildap ldap client API. ldb provides a much easier abstraction on this to use, and doesn't use these functions. Andrew Bartlett (This used to be commit dc27a7e41c297472675e8c251bb14327a1af3902) --- source4/dsdb/samdb/ldb_modules/entryUUID.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source4/dsdb/samdb') diff --git a/source4/dsdb/samdb/ldb_modules/entryUUID.c b/source4/dsdb/samdb/ldb_modules/entryUUID.c index 4373863caf..51a2badfeb 100644 --- a/source4/dsdb/samdb/ldb_modules/entryUUID.c +++ b/source4/dsdb/samdb/ldb_modules/entryUUID.c @@ -306,7 +306,7 @@ static struct ldb_val timestamp_to_usn(struct ldb_module *module, TALLOC_CTX *ct } -const struct ldb_map_attribute entryUUID_attributes[] = +static const struct ldb_map_attribute entryUUID_attributes[] = { /* objectGUID */ { @@ -498,7 +498,7 @@ const struct ldb_map_objectclass entryUUID_objectclasses[] = /* These things do not show up in wildcard searches in OpenLDAP, but * we need them to show up in the AD-like view */ -const char * const entryUUID_wildcard_attributes[] = { +static const char * const entryUUID_wildcard_attributes[] = { "objectGUID", "whenCreated", "whenChanged", @@ -507,7 +507,7 @@ const char * const entryUUID_wildcard_attributes[] = { NULL }; -const struct ldb_map_attribute nsuniqueid_attributes[] = +static const struct ldb_map_attribute nsuniqueid_attributes[] = { /* objectGUID */ { @@ -648,7 +648,7 @@ const struct ldb_map_attribute nsuniqueid_attributes[] = /* These things do not show up in wildcard searches in OpenLDAP, but * we need them to show up in the AD-like view */ -const char * const nsuniqueid_wildcard_attributes[] = { +static const char * const nsuniqueid_wildcard_attributes[] = { "objectGUID", "whenCreated", "whenChanged", -- cgit