From 9fa56b9ae9df53b60ff76f4ce08d720ff9a6fc36 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20M=C3=BCller?= Date: Sat, 8 Sep 2007 13:53:08 +0000 Subject: [PATCH] r25030: ip_srv_nonsite and count_nonsite are initialized in get_kdc_list() in any case. (This used to be commit 287604a1c7dc7dede4b278de92ad8233f597d0b6) --- source3/libads/kerberos.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/libads/kerberos.c b/source3/libads/kerberos.c index 1b5ec88dcfe..62a4f84e108 100644 --- a/source3/libads/kerberos.c +++ b/source3/libads/kerberos.c @@ -618,9 +618,9 @@ static char *get_kdc_ip_string(char *mem_ctx, const char *realm, const char *sit { int i; struct ip_service *ip_srv_site = NULL; - struct ip_service *ip_srv_nonsite = NULL; + struct ip_service *ip_srv_nonsite; int count_site = 0; - int count_nonsite = 0; + int count_nonsite; char *kdc_str = talloc_asprintf(mem_ctx, "\tkdc = %s\n", inet_ntoa(primary_ip)); -- 2.11.4.GIT