Use unsigned bit fields.
authorGraham Leggett <minfrin@apache.org>
Thu, 22 Jan 2015 18:06:57 +0000 (18:06 +0000)
committerGraham Leggett <minfrin@apache.org>
Thu, 22 Jan 2015 18:06:57 +0000 (18:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1653978 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_alias.c

index 1e8a5b41bf126f73039e00fa8eccc3cb59cbcb2b..ad6e55846e682917d76c03b8c2597f7375e58dc7 100644 (file)
@@ -51,8 +51,8 @@ typedef struct {
 } alias_server_conf;
 
 typedef struct {
-    int alias_set:1;
-    int redirect_set:1;
+    unsigned int alias_set:1;
+    unsigned int redirect_set:1;
     apr_array_header_t *redirects;
     const ap_expr_info_t *alias;
     char *handler;