From: Andreas Schneider Date: Thu, 7 Dec 2017 16:43:58 +0000 (+0100) Subject: s4:cldap_server: Fix size types X-Git-Tag: talloc-2.1.12~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=939b4723a7d159466bfe2e66ddcb38012e412385;p=thirdparty%2Fsamba.git s4:cldap_server: Fix size types This fixes compilation with -Wstrict-overflow=2 Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- diff --git a/source4/cldap_server/cldap_server.c b/source4/cldap_server/cldap_server.c index 3f845c7e240..a0cde776550 100644 --- a/source4/cldap_server/cldap_server.c +++ b/source4/cldap_server/cldap_server.c @@ -154,7 +154,7 @@ static NTSTATUS cldapd_startup_interfaces(struct cldapd_server *cldapd, struct l /* if we are allowing incoming packets from any address, then we need to bind to the wildcard address */ if (!lpcfg_bind_interfaces_only(lp_ctx)) { - int num_binds = 0; + size_t num_binds = 0; char **wcard = iface_list_wildcard(cldapd); NT_STATUS_HAVE_NO_MEMORY(wcard); for (i=0; wcard[i]; i++) {