From: Jim Jagielski Date: Tue, 1 Feb 2011 18:14:37 +0000 (+0000) Subject: bitfields should be unsigned X-Git-Tag: 2.3.11~120 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19a1fc41709271d855dd82eaab5a7b36969a4208;p=thirdparty%2Fapache%2Fhttpd.git bitfields should be unsigned git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066112 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.h b/modules/proxy/mod_proxy.h index bbacb3eefcf..2016cccb1cd 100644 --- a/modules/proxy/mod_proxy.h +++ b/modules/proxy/mod_proxy.h @@ -382,10 +382,10 @@ typedef struct { proxy_balancer_method *lbmethod; int max_attempts; /* Number of attempts before failing */ int index; /* shm array index */ - int sticky_force:1; /* Disable failover for sticky sessions */ - int scolonsep:1; /* true if ';' seps sticky session paths */ - int max_attempts_set:1; - unsigned int was_malloced:1; + unsigned int sticky_force:1; /* Disable failover for sticky sessions */ + unsigned int scolonsep:1; /* true if ';' seps sticky session paths */ + unsigned int max_attempts_set:1; + unsigned int was_malloced:1; } proxy_balancer_shared; #define ALIGNED_PROXY_BALANCER_SHARED_SIZE (APR_ALIGN_DEFAULT(sizeof(proxy_balancer_shared)))