From 6b51c2d53bf1289ccd9ca0d34604e293e2302fc6 Mon Sep 17 00:00:00 2001 From: stskeeps Date: Mon, 12 Aug 2002 15:18:32 +0000 Subject: [PATCH] .. Fixed a problem with normal unix source compiling as codemastr had #ifdef _WIN32 'ed find_match_server, causing me to believe it was gone. --- Changes | 2 ++ src/s_serv.c | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 6a547916b..aa3de49d3 100644 --- a/Changes +++ b/Changes @@ -1465,3 +1465,5 @@ seen. gmtime warning still there - Fixed a make install bug due to removing obsolete files, reported by Morbid (#0000250) - Removed find_match_server from hash.c since it wasn't removed and was instead already moved to s_serv. +- .. Fixed a problem with normal unix source compiling as codemastr had + #ifdef _WIN32 'ed find_match_server, causing me to believe it was gone. diff --git a/src/s_serv.c b/src/s_serv.c index 35a43a97a..cd1b9d8f7 100644 --- a/src/s_serv.c +++ b/src/s_serv.c @@ -4320,6 +4320,8 @@ int localdie(void) return 0; } +#endif + aClient *find_match_server(char *mask) { aClient *acptr; @@ -4336,4 +4338,3 @@ aClient *find_match_server(char *mask) } return acptr; } -#endif