From: William A. Rowe Jr Date: Thu, 28 Jun 2001 01:13:09 +0000 (+0000) Subject: One cannot have an entirely empty struct ... this is just to make things X-Git-Tag: 2.0.19~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ac49c6424a77634e3d72fe235bcc9a6d2c5b598;p=thirdparty%2Fapache%2Fhttpd.git One cannot have an entirely empty struct ... this is just to make things actually compile, and exclude an include we don't have on Win32. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89460 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/mod_ssl.h b/modules/ssl/mod_ssl.h index 26ce020d558..6e3dc3b56bf 100644 --- a/modules/ssl/mod_ssl.h +++ b/modules/ssl/mod_ssl.h @@ -97,7 +97,9 @@ #include #include #include +#if APR_HAVE_SYS_TIME_H #include +#endif /* OpenSSL headers */ #include @@ -510,8 +512,8 @@ typedef struct { */ #endif /* XXX */ typedef struct { -#if 0 /* XXX */ BOOL bSSLRequired; +#if 0 /* XXX */ array_header *aRequirement; ssl_opt_t nOptions; ssl_opt_t nOptionsAdd;