From 19a1fc41709271d855dd82eaab5a7b36969a4208 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Tue, 1 Feb 2011 18:14:37 +0000 Subject: [PATCH] bitfields should be unsigned git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1066112 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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))) -- 2.47.2