1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 17:23:12 +02:00

BUILD : 1.7.5 (363) NOTES : Added unreal fix from Trystan.

git-svn-id: svn://svn.anope.org/anope/trunk@363 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@234 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-09-30 01:36:34 +00:00
parent 676b8eaf7f
commit a9dd1756cf
3 changed files with 13 additions and 7 deletions
+1
View File
@@ -185,6 +185,7 @@ the behavior of Anope:
possible, even if errors are encountered
-noexpire Expiration routines won't be run at all
-logchan Startup with logchan enabled
-version Display the version of Anope
Upon starting, Anope will parse its command-line parameters, open
its logfile, then (assuming the -nofork option is not given) detach itself
+8 -6
View File
@@ -1782,13 +1782,15 @@ int anope_event_server(char *source, int ac, char **av)
char *vl;
char *numeric;
if (!stricmp(av[1], "1"))
if (!stricmp(av[1], "1")) {
uplink = sstrdup(av[0]);
vl = myStrGetToken(av[2], ' ', 0);
numeric = myStrGetToken(vl, '-', 2);
desc = myStrGetTokenRemainder(av[2], ' ', 1);
do_server(source, av[0], av[1], desc, numeric);
vl = myStrGetToken(av[2], ' ', 0);
numeric = myStrGetToken(vl, '-', 2);
desc = myStrGetTokenRemainder(av[2], ' ', 1);
do_server(source, av[0], av[1], desc, numeric);
} else {
do_server(source, av[0], av[1], av[2], NULL);
}
return MOD_CONT;
}
+4 -1
View File
@@ -8,10 +8,13 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="5"
VERSION_BUILD="362"
VERSION_BUILD="363"
# $Log$
#
# BUILD : 1.7.5 (363)
# NOTES : Added unreal fix from Trystan.
#
# BUILD : 1.7.5 (362)
# BUGS : 17 143 147 166 172 173
# NOTES : Applied patch 927 provided by Trystan.