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