r7856: fixed warning of 'methods' shadowed variable
authorAndrew Tridgell <tridge@samba.org>
Fri, 24 Jun 2005 00:04:26 +0000 (00:04 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:18:43 +0000 (13:18 -0500)
(This used to be commit c435843c66a5dcc003d157374529c3c5ac733e36)

source4/libcli/resolve/resolve.c

index b87f9abe892d9fae352b9841774d6b929545b185..3607400155841201b1d78a887784972e8768ec6d 100644 (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;