1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

r7856: fixed warning of 'methods' shadowed variable

(This used to be commit c435843c66a5dcc003d157374529c3c5ac733e36)
This commit is contained in:
Andrew Tridgell 2005-06-24 00:04:26 +00:00 committed by Gerald (Jerry) Carter
parent acd04c9281
commit 21d6a163a3

View File

@ -40,7 +40,7 @@ static const struct resolve_method {
struct composite_context *(*send_fn)(struct nbt_name *, struct event_context *);
NTSTATUS (*recv_fn)(struct composite_context *, TALLOC_CTX *, const char **);
} methods[] = {
} resolve_methods[] = {
{ "bcast", resolve_name_bcast_send, resolve_name_bcast_recv },
{ "wins", resolve_name_wins_send, resolve_name_wins_recv },
{ "host", resolve_name_host_send, resolve_name_host_recv }
@ -54,9 +54,9 @@ static const struct resolve_method *find_method(const char *name)
{
int i;
if (name == NULL) return NULL;
for (i=0;i<ARRAY_SIZE(methods);i++) {
if (strcasecmp(name, methods[i].name) == 0) {
return &methods[i];
for (i=0;i<ARRAY_SIZE(resolve_methods);i++) {
if (strcasecmp(name, resolve_methods[i].name) == 0) {
return &resolve_methods[i];
}
}
return NULL;