summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGregg Lewis Smith <gsmith@apache.org>2012-12-05 19:46:35 +0100
committerGregg Lewis Smith <gsmith@apache.org>2012-12-05 19:46:35 +0100
commit6b24eb5bb939b118387d3741d872ab74b956c230 (patch)
tree2200d4acea6cd2268c87e76237dfe877fadb2009 /include
parentUserland change (diff)
downloadapache2-6b24eb5bb939b118387d3741d872ab74b956c230.tar.xz
apache2-6b24eb5bb939b118387d3741d872ab74b956c230.zip
fixed types since MSVC doesnt have uint*_t.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1417585 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/http_core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http_core.h b/include/http_core.h
index ca480f01a2..c2eabbff8e 100644
--- a/include/http_core.h
+++ b/include/http_core.h
@@ -665,8 +665,8 @@ typedef struct {
int trace_enable;
#define AP_HTTP_VERSION_UNSET 0
- uint16_t min_http_version;
- uint16_t max_http_version;
+ apr_uint16_t min_http_version;
+ apr_uint16_t max_http_version;
} core_server_config;