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:
@@ -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)
|
||||
|
||||
@@ -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;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user