diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/protocol/ptlink.c | 2 | ||||
-rw-r--r-- | version.log | 7 |
3 files changed, 7 insertions, 3 deletions
@@ -60,6 +60,7 @@ Provided by Trystan <trystan@nomadirc.net> - 2006 07/14 F Another version fix. [#545] 07/15 F Fixed max param count for SJOINs. [#549] 07/15 F Fixed !halfop fantasy stuff. [#534] +07/25 F Fixed /newmask stuff for ptlink. [#560] 07/14 A Added anope_cmd_action() and new param for EVENT_PART_CHANNEL. [#550] Anope Version 1.7.14 diff --git a/src/protocol/ptlink.c b/src/protocol/ptlink.c index c0bb4c347..760e9c446 100644 --- a/src/protocol/ptlink.c +++ b/src/protocol/ptlink.c @@ -456,7 +456,7 @@ int anope_event_newmask(char *source, int ac, char **av) newhost = av[0]; } - if (*newhost == '@') + if (newhost && *newhost == '@') newhost++; u->mode |= UMODE_VH; diff --git a/version.log b/version.log index ed2ccab2c..03bbc892d 100644 --- a/version.log +++ b/version.log @@ -9,15 +9,18 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="14" VERSION_EXTRA="" -VERSION_BUILD="1101" +VERSION_BUILD="1102" # $Log$ # +# BUILD : 1.7.14 (1102) +# BUGS : 560 +# NOTES : fixed ptlink /newmask stuff. thx to trystan. +# # BUILD : 1.7.14 (1101) # BUGS : N/A # NOTES : Unreal32 will now prompt users to check there link blocks if there wrong. # -# # BUILD : 1.7.14 (1100) # BUGS : # NOTES : removed os_killclones.c |