svn commit: samba r25030 - in branches: SAMBA_3_0_25/source/libads SAMBA_3_2/source/libads SAMBA_3_2_0/source/libads

lmuelle at samba.org lmuelle at samba.org
Sat Sep 8 13:53:09 GMT 2007


Author: lmuelle
Date: 2007-09-08 13:53:08 +0000 (Sat, 08 Sep 2007)
New Revision: 25030

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=25030

Log:
ip_srv_nonsite and count_nonsite are initialized in get_kdc_list() in any
case.

Modified:
   branches/SAMBA_3_0_25/source/libads/kerberos.c
   branches/SAMBA_3_2/source/libads/kerberos.c
   branches/SAMBA_3_2_0/source/libads/kerberos.c


Changeset:
Modified: branches/SAMBA_3_0_25/source/libads/kerberos.c
===================================================================
--- branches/SAMBA_3_0_25/source/libads/kerberos.c	2007-09-08 13:35:56 UTC (rev 25029)
+++ branches/SAMBA_3_0_25/source/libads/kerberos.c	2007-09-08 13:53:08 UTC (rev 25030)
@@ -492,9 +492,9 @@
 {
 	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));
 

Modified: branches/SAMBA_3_2/source/libads/kerberos.c
===================================================================
--- branches/SAMBA_3_2/source/libads/kerberos.c	2007-09-08 13:35:56 UTC (rev 25029)
+++ branches/SAMBA_3_2/source/libads/kerberos.c	2007-09-08 13:53:08 UTC (rev 25030)
@@ -618,9 +618,9 @@
 {
 	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));
 

Modified: branches/SAMBA_3_2_0/source/libads/kerberos.c
===================================================================
--- branches/SAMBA_3_2_0/source/libads/kerberos.c	2007-09-08 13:35:56 UTC (rev 25029)
+++ branches/SAMBA_3_2_0/source/libads/kerberos.c	2007-09-08 13:53:08 UTC (rev 25030)
@@ -618,9 +618,9 @@
 {
 	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));
 



More information about the samba-cvs mailing list