1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

Use unsigned bit flags (otherwise the non-zero value to be used is -1).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1603863 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yann Ylavic
2014-06-19 12:43:05 +00:00
parent 98bba830b4
commit ff4ff27e69
2 changed files with 4 additions and 4 deletions

View File

@@ -40,9 +40,9 @@ typedef struct {
ap_expr_info_t *fakeuser;
ap_expr_info_t *fakepass;
const char *use_digest_algorithm;
int fake_set:1;
int use_digest_algorithm_set:1;
int authoritative_set:1;
unsigned int fake_set:1,
use_digest_algorithm_set:1,
authoritative_set:1;
} auth_basic_config_rec;
static void *create_auth_basic_dir_config(apr_pool_t *p, char *d)

View File

@@ -77,7 +77,7 @@ typedef struct http_filter_ctx
BODY_CHUNK_END, /* chunk terminating CRLF */
BODY_CHUNK_TRAILER /* trailers */
} state :3;
int eos_sent :1;
unsigned int eos_sent :1;
} http_ctx_t;
/**