You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gs...@apache.org on 2012/12/05 19:46:36 UTC

svn commit: r1417585 - /httpd/httpd/trunk/include/http_core.h

Author: gsmith
Date: Wed Dec  5 18:46:35 2012
New Revision: 1417585

URL: http://svn.apache.org/viewvc?rev=1417585&view=rev
Log:
fixed types since MSVC doesnt have uint*_t.

Modified:
    httpd/httpd/trunk/include/http_core.h

Modified: httpd/httpd/trunk/include/http_core.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_core.h?rev=1417585&r1=1417584&r2=1417585&view=diff
==============================================================================
--- httpd/httpd/trunk/include/http_core.h (original)
+++ httpd/httpd/trunk/include/http_core.h Wed Dec  5 18:46:35 2012
@@ -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;