1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-06 14:33:13 +02:00

.. Fixed a problem with normal unix source compiling as codemastr had

#ifdef _WIN32 'ed find_match_server, causing me to believe it was gone.
This commit is contained in:
stskeeps
2002-08-12 15:18:32 +00:00
parent 272b7dd892
commit 6b51c2d53b
2 changed files with 4 additions and 1 deletions
+2
View File
@@ -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.
+2 -1
View File
@@ -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