summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/modules/schema.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-01-20 00:46:04 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:09:01 -0500
commitb808d49cd5e72c5c3560a334fdfefe40f3da721f (patch)
tree9d1c14cd99d551e460bbe4338802114096bc7adb /source4/lib/ldb/modules/schema.c
parentbc2ae4e4cd96311a028486cac78960142e9b41c5 (diff)
downloadsamba-b808d49cd5e72c5c3560a334fdfefe40f3da721f.tar.gz
samba-b808d49cd5e72c5c3560a334fdfefe40f3da721f.tar.bz2
samba-b808d49cd5e72c5c3560a334fdfefe40f3da721f.zip
r4863: schema_find_attribute() should be static
(This used to be commit e7262dccce1ccc563fad48023c733c1d13929b4b)
Diffstat (limited to 'source4/lib/ldb/modules/schema.c')
-rw-r--r--source4/lib/ldb/modules/schema.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/modules/schema.c b/source4/lib/ldb/modules/schema.c
index 86dc617d99..2921bdc68b 100644
--- a/source4/lib/ldb/modules/schema.c
+++ b/source4/lib/ldb/modules/schema.c
@@ -94,7 +94,7 @@ static int schema_attr_cmp(const char *attr1, const char *attr2)
return ret;
}
-struct schema_attribute *schema_find_attribute(struct schema_attribute_list *list, const char *attr_name)
+static struct schema_attribute *schema_find_attribute(struct schema_attribute_list *list, const char *attr_name)
{
unsigned int i;
for (i = 0; i < list->num; i++) {