diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | nickserv.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 8 insertions, 1 deletions
@@ -7,6 +7,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004 05/24 A New NSNickTracking directive to provide nick tracking. [ #71] 05/21 A Auto enforce upon AKICK addition. [ #63] 05/21 A New file docs/OLDCHANGES contains all change history. [ #65] +06/09 F Corrected compile warning for Hybrid support. [ #93] 06/06 F Fixed a bug with long NSGuestNickPrefixes. [ #00] 06/04 F Buffer initialization for encrypted MySQL passwords. [ #86] 06/04 F Rewrite of del_exception() fixing segfault and memory leak. [ #78] diff --git a/nickserv.c b/nickserv.c index 26a906880..016d5141b 100644 --- a/nickserv.c +++ b/nickserv.c @@ -1651,7 +1651,9 @@ int delnick(NickAlias * na) static void collide(NickAlias * na, int from_timeout) { +#ifndef IRC_HYBRID char guestnick[NICKMAX]; +#endif if (!from_timeout) del_ns_timeout(na, TO_COLLIDE); diff --git a/version.log b/version.log index 68b136b42..a71fc52da 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="3" -VERSION_BUILD="176" +VERSION_BUILD="179" # $Log$ # +# BUILD : 1.7.3 (179) +# BUGS : 93 +# NOTES : Corrected compile warning for Hybrid support. +# # BUILD : 1.7.3 (176) # BUGS : # NOTES : Added check to make sure register script was being run from within the bin/ directory. If ./bin/register was used, the path to cache file would be incorrect (../config.cache) |