summaryrefslogtreecommitdiffstats
path: root/modules/cache/cache_disk_common.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2011-03-29 20:20:52 +0200
committerJeff Trawick <trawick@apache.org>2011-03-29 20:20:52 +0200
commit562c645ad6e73d03183f5aadc64e1d37c1f9c6ce (patch)
tree48ab1a821d89227036bb06c3e3c699a6e3c4e165 /modules/cache/cache_disk_common.h
parentRebuild, and fix XML error. Troubleshooting using server-status (diff)
downloadapache2-562c645ad6e73d03183f5aadc64e1d37c1f9c6ce.tar.xz
apache2-562c645ad6e73d03183f5aadc64e1d37c1f9c6ce.zip
change signed single-bit fields to unsigned
some of these were exposed to mods so the mmn is bumped, without regard to whether any compiler will have to generate different code git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086662 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache/cache_disk_common.h')
-rw-r--r--modules/cache/cache_disk_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/cache/cache_disk_common.h b/modules/cache/cache_disk_common.h
index 8cac2d5308..ace569e863 100644
--- a/modules/cache/cache_disk_common.h
+++ b/modules/cache/cache_disk_common.h
@@ -58,8 +58,8 @@ typedef struct {
apr_ino_t inode;
apr_dev_t device;
/* Does this cached request have a body? */
- int has_body:1;
- int header_only:1;
+ unsigned int has_body:1;
+ unsigned int header_only:1;
/* The parsed cache control header */
cache_control_t control;
} disk_cache_info_t;