diff options
-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. |