diff options
| author | 1999-12-08 02:45:48 +0000 | |
|---|---|---|
| committer | 1999-12-08 02:45:48 +0000 | |
| commit | 69fe16e6f86413aa00dca3a3ae2292edea53059f (patch) | |
| tree | 9f81d76784a617777075a3bf694aaa8e6e580ba2 /usr.sbin/httpd/src/modules/ssl/ssl_engine_init.c | |
| parent | AH finished, a couple of cosmetic changes in ESP. (diff) | |
| download | wireguard-openbsd-69fe16e6f86413aa00dca3a3ae2292edea53059f.tar.xz wireguard-openbsd-69fe16e6f86413aa00dca3a3ae2292edea53059f.zip | |
mod_ssl 2.4.9 merge
Diffstat (limited to 'usr.sbin/httpd/src/modules/ssl/ssl_engine_init.c')
| -rw-r--r-- | usr.sbin/httpd/src/modules/ssl/ssl_engine_init.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/modules/ssl/ssl_engine_init.c b/usr.sbin/httpd/src/modules/ssl/ssl_engine_init.c index 16680c607c8..350a6957ce1 100644 --- a/usr.sbin/httpd/src/modules/ssl/ssl_engine_init.c +++ b/usr.sbin/httpd/src/modules/ssl/ssl_engine_init.c @@ -164,11 +164,17 @@ void ssl_init_Module(server_rec *s, pool *p) /* * Identification */ - if (mc->nInitCount == 1) + if (mc->nInitCount == 1) { ssl_log(s, SSL_LOG_INFO, "Server: %s, Interface: %s, Library: %s", SERVER_BASEVERSION, ssl_var_lookup(p, NULL, NULL, NULL, "SSL_VERSION_INTERFACE"), ssl_var_lookup(p, NULL, NULL, NULL, "SSL_VERSION_LIBRARY")); +#ifdef WIN32 + ssl_log(s, SSL_LOG_WARN, "You are using mod_ssl under Win32. " + "This combination is *NOT* officially supported. " + "Use it at your own risk!"); +#endif + } /* * Initialization round information |
