diff --git a/Changes b/Changes index c0fd7d443..b27c4b1d5 100644 --- a/Changes +++ b/Changes @@ -3217,3 +3217,4 @@ This is the 3.2 fixes branch. - Fixed some other win32 crashes due to modulizing: WHOWAS, STATS [some], SVSMOTD. All caused by missing "MODVAR"s. Reported by Troco (#0001841). - Fixed SSL problem caused by a fix of 2 days ago. Reported by Fury (#0001842). +- And one more. diff --git a/src/modules.c b/src/modules.c index 56de624c5..34846ea7d 100644 --- a/src/modules.c +++ b/src/modules.c @@ -164,7 +164,7 @@ static char *our_mod_version() { static char retbuf[128]; strlcpy(retbuf, version, sizeof(retbuf)); -#ifdef USE_SSL +#if defined(USE_SSL) && !defined(_WIN32) strlcat(retbuf, "/SSL", sizeof(retbuf)); #endif return retbuf;