From: Hallvard Furuseth Date: Sat, 18 Oct 2008 23:59:53 +0000 (+0000) Subject: Warning cleanup: signed meets unsigned: SASL struct propval {unsigned nvalues}. X-Git-Tag: ACLCHECK_0~1221 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3fff0a7919760a911f5f4fef133d96dcebf5abe4;p=openldap Warning cleanup: signed meets unsigned: SASL struct propval {unsigned nvalues}. --- diff --git a/servers/slapd/sasl.c b/servers/slapd/sasl.c index 0a300fa879..0f8b909a9e 100644 --- a/servers/slapd/sasl.c +++ b/servers/slapd/sasl.c @@ -397,7 +397,8 @@ slap_auxprop_store( Operation op = {0}; Opheader oph; SlapReply rs = {REP_RESULT}; - int rc, i, j; + int rc, i; + unsigned j; Connection *conn = NULL; const struct propval *pr; Modifications *modlist = NULL, **modtail = &modlist, *mod;