diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-09-30 01:36:34 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-09-30 01:36:34 +0000 |
commit | a9dd1756cfb37cbe750061830afda989e222a6f6 (patch) | |
tree | 661fdfb66f09b8504f8aad9eb713c3ea59eaac84 | |
parent | 676b8eaf7fcec02ad2583dc0bcc531942b65068e (diff) |
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
-rw-r--r-- | docs/README | 1 | ||||
-rw-r--r-- | src/unreal32.c | 14 | ||||
-rw-r--r-- | version.log | 5 |
3 files changed, 13 insertions, 7 deletions
diff --git a/docs/README b/docs/README index f6b2f19ee..f49b7d2b3 100644 --- a/docs/README +++ b/docs/README @@ -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 diff --git a/src/unreal32.c b/src/unreal32.c index 0c942677e..a0f933971 100644 --- a/src/unreal32.c +++ b/src/unreal32.c @@ -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; } diff --git a/version.log b/version.log index 4dfaf4109..1e8a2f7a9 100644 --- a/version.log +++ b/version.log @@ -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. |