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 | 5bd34d995d1884c6ce3dc7ffb9f66ff8c91c6c31 (patch) | |
tree | 9c9bd61f422249e01f3b67d91689514ddc47b301 | |
parent | 565b9cc1572e284ed5d9324f232249a32b76f164 (diff) | |
download | samba-5bd34d995d1884c6ce3dc7ffb9f66ff8c91c6c31.tar.gz samba-5bd34d995d1884c6ce3dc7ffb9f66ff8c91c6c31.tar.xz samba-5bd34d995d1884c6ce3dc7ffb9f66ff8c91c6c31.zip |
Removed dodgy init of local variable.
(This used to be commit 1f7172b48e77dcda8bfd20d8e79a90b523727493)
-rw-r--r-- | source3/nsswitch/winbindd_cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_cm.c b/source3/nsswitch/winbindd_cm.c index 611a4c9221..87bb5f9079 100644 --- a/source3/nsswitch/winbindd_cm.c +++ b/source3/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 */ |