1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

r4863: schema_find_attribute() should be static

(This used to be commit e7262dccce)
This commit is contained in:
Andrew Tridgell 2005-01-20 00:46:04 +00:00 committed by Gerald (Jerry) Carter
parent bc2ae4e4cd
commit b808d49cd5

View File

@ -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++) {