1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

s4:cldap_server.c - here the counter variable should be "signed"

This commit is contained in:
Matthias Dieter Wallnöfer 2010-06-18 18:57:38 +02:00
parent 2e8c563961
commit 9969cfc36c

View File

@ -147,10 +147,9 @@ static NTSTATUS cldapd_add_socket(struct cldapd_server *cldapd, struct loadparm_
static NTSTATUS cldapd_startup_interfaces(struct cldapd_server *cldapd, struct loadparm_context *lp_ctx,
struct interface *ifaces)
{
int num_interfaces;
int i, num_interfaces;
TALLOC_CTX *tmp_ctx = talloc_new(cldapd);
NTSTATUS status;
unsigned int i;
num_interfaces = iface_count(ifaces);