From: Gregg Lewis Smith Date: Wed, 5 Dec 2012 18:46:35 +0000 (+0000) Subject: fixed types since MSVC doesnt have uint*_t. X-Git-Tag: 2.5.0-alpha~6064 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b24eb5bb939b118387d3741d872ab74b956c230;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/include/http_core.h b/include/http_core.h index ca480f01a26..c2eabbff8e7 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;