diff options
author | Tim Potter <tpot@samba.org> | 2002-01-25 05:28:38 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-01-25 05:28:38 +0000 |
commit | 1f7172b48e77dcda8bfd20d8e79a90b523727493 (patch) | |
tree | ebce726b641723c6a72e2200778edc7dba18745a /source/nsswitch/winbindd_cm.c | |
parent | 0db93d8752197e213f0974edae53e2dafdd77b51 (diff) | |
download | samba-1f7172b48e77dcda8bfd20d8e79a90b523727493.tar.gz samba-1f7172b48e77dcda8bfd20d8e79a90b523727493.tar.xz samba-1f7172b48e77dcda8bfd20d8e79a90b523727493.zip |
Removed dodgy init of local variable.
Diffstat (limited to 'source/nsswitch/winbindd_cm.c')
-rw-r--r-- | source/nsswitch/winbindd_cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/nsswitch/winbindd_cm.c b/source/nsswitch/winbindd_cm.c index 611a4c92216..87bb5f9079e 100644 --- a/source/nsswitch/winbindd_cm.c +++ b/source/nsswitch/winbindd_cm.c @@ -92,7 +92,7 @@ static BOOL cm_get_dc_name(char *domain, fstring srv_name) static struct get_dc_name_cache *get_dc_name_cache; struct get_dc_name_cache *dcc; struct in_addr *ip_list, dc_ip; - int count, i = 0; + int count, i; /* Check the cache for previous lookups */ |