From 3fff0a7919760a911f5f4fef133d96dcebf5abe4 Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Sat, 18 Oct 2008 23:59:53 +0000 Subject: [PATCH] Warning cleanup: signed meets unsigned: SASL struct propval {unsigned nvalues}. --- servers/slapd/sasl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.39.5