diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-07-24 22:12:44 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-07-24 22:12:44 +0000 |
commit | 147d9a91a69a57f12bc35b059d891ea9e6068689 (patch) | |
tree | 2322d03ba9ed2c9ac29950e2e77c9b676b716c4b | |
parent | 942cb38436fc3bb381a7b254fcfd4b66d23dc1c9 (diff) |
# BUILD : 1.7.14 (1102) # BUGS : 560 # NOTES : fixed ptlink /newmask stuff. thx to trystan.
git-svn-id: svn://svn.anope.org/anope/trunk@1102 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@826 5417fbe8-f217-4b02-8779-1006273d7864
-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 |