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

Fixed Windows build

This commit is contained in:
Adam
2010-07-06 16:28:58 -04:00
parent e42f125a85
commit 3a422777c5
3 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -312,7 +312,7 @@ MDE int moduleAddCommand(CommandHash *cmdTable[], Command *c, int pos);
MDE int addCommand(CommandHash *cmdTable[], Command *c,int pos);
MDE int delCommand(CommandHash *cmdTable[], Command *c,char *mod_name); /* Del a command from a cmd table */
MDE int moduleDelCommand(CommandHash *cmdTable[],char *name); /* Del a command from a cmd table */
Command *findCommand(CommandHash *cmdTable[], const char *name); /* Find a command */
MDE Command *findCommand(CommandHash *cmdTable[], const char *name); /* Find a command */
/*************************************************************************/
+3 -1
View File
@@ -1446,11 +1446,13 @@ int anope_event_squit(char *source, int ac, char **av)
int anope_event_rsquit(char *source, int ac, char **av)
{
Server *s;
if (ac < 1 || ac > 3)
return MOD_CONT;
/* On InspIRCd we must send a SQUIT when we receive RSQUIT for a server we have juped */
Server *s = findserver(servlist, av[0]);
s = findserver(servlist, av[0]);
if (!s)
s = findserver_uid(servlist, av[0]);
if (s && s->flags & SERVER_JUPED)
+1 -1
View File
@@ -8,7 +8,7 @@ VERSION_MAJOR="1"
VERSION_MINOR="8"
VERSION_PATCH="4"
VERSION_EXTRA="-git"
VERSION_BUILD="3012"
VERSION_BUILD="3013"
# $Log$ # Changes since the 1.8.4 Release
#Revision 3012 - Removed enc_encrypt_in_place, it is unnecessary and it can easially be used improperly