From 9ebd9e9bcf095026735f52c25f0b8125f4e7fa80 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Mon, 31 May 2004 00:32:52 +0000 Subject: [PATCH] - And one more. --- Changes | 1 + src/modules.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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;