From: William A. Rowe Jr Date: Sat, 7 Jun 2008 02:04:41 +0000 (+0000) Subject: Signedness error X-Git-Tag: 2.3.0~519 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c14c55d543405c92f5d96479319a9db0ae73ffe5;p=thirdparty%2Fapache%2Fhttpd.git Signedness error git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@664239 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/mod_socache_memcache.c b/modules/cache/mod_socache_memcache.c index a9b0f47ac10..c42dfa69fb8 100644 --- a/modules/cache/mod_socache_memcache.c +++ b/modules/cache/mod_socache_memcache.c @@ -173,7 +173,7 @@ static void mc_session_id2sz(ap_socache_instance_t *ctx, { apr_size_t maxlen = (buflen - ctx->taglen) / 2; char *cp; - int n; + unsigned int n; cp = apr_cpystrn(buf, ctx->tag, ctx->taglen); for (n = 0; n < idlen && n < maxlen; n++) {