clang reports: implicit truncation from 'int' to a one-bit wide bit-field
changes value from 1 to -1
Change authoritative_set and proxy_set bitfields to unsigned.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1914367 13f79535-47bb-0310-9956-
ffa450edef68
autht_provider_list *providers;
int authoritative;
ap_expr_info_t *proxy;
- int authoritative_set:1;
- int proxy_set:1;
+ unsigned int authoritative_set:1;
+ unsigned int proxy_set:1;
} auth_bearer_config_rec;
static void *create_auth_bearer_dir_config(apr_pool_t *p, char *d)