1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r4863: schema_find_attribute() should be static

This commit is contained in:
Andrew Tridgell 2005-01-20 00:46:04 +00:00 committed by Gerald (Jerry) Carter
parent 0315159daf
commit e7262dccce

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