projects
/
apache
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5488d21
)
Use unsigned bit fields.
author
Graham Leggett
<minfrin@apache.org>
Thu, 22 Jan 2015 18:06:57 +0000
(18:06 +0000)
committer
Graham 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
patch
|
blob
|
history
diff --git
a/modules/mappers/mod_alias.c
b/modules/mappers/mod_alias.c
index 1e8a5b41bf126f73039e00fa8eccc3cb59cbcb2b..ad6e55846e682917d76c03b8c2597f7375e58dc7 100644
(file)
--- a/
modules/mappers/mod_alias.c
+++ b/
modules/mappers/mod_alias.c
@@
-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;