svn commit: samba r13080 - in branches/SAMBA_4_0/source/wrepl_server: .

metze at samba.org metze at samba.org
Mon Jan 23 12:55:23 GMT 2006


Author: metze
Date: 2006-01-23 12:55:22 +0000 (Mon, 23 Jan 2006)
New Revision: 13080

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

Log:
fix crash bug

metze
Modified:
   branches/SAMBA_4_0/source/wrepl_server/wrepl_scavenging.c


Changeset:
Modified: branches/SAMBA_4_0/source/wrepl_server/wrepl_scavenging.c
===================================================================
--- branches/SAMBA_4_0/source/wrepl_server/wrepl_scavenging.c	2006-01-23 11:23:39 UTC (rev 13079)
+++ branches/SAMBA_4_0/source/wrepl_server/wrepl_scavenging.c	2006-01-23 12:55:22 UTC (rev 13080)
@@ -323,7 +323,7 @@
 			}
 		}
 	} else if (NT_STATUS_IS_OK(status) && rec->type == WREPL_TYPE_GROUP) {
-		if (s->r.out.num_addrs != 1 || strcmp(s->r.out.addrs[i].addr, "255.255.255.255") != 0) {
+		if (s->r.out.num_addrs != 1 || strcmp(s->r.out.addrs[0].addr, "255.255.255.255") != 0) {
 			different = True;
 		}
 	}



More information about the samba-cvs mailing list