diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-09 14:13:49 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-09 14:13:49 +0000 |
commit | dd01ffb2f05db639f54a1bc29cabffc705addeea (patch) | |
tree | 85033feea58f7f0118edee6be6adb96d7303d0c7 | |
parent | ef536a1816ddace847600a95d18cec568000f6e4 (diff) |
BUILD : 1.7.3 (179) BUGS : 93 NOTES : Corrected compile warning for Hybrid support.
git-svn-id: svn://svn.anope.org/anope/trunk@179 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@124 5417fbe8-f217-4b02-8779-1006273d7864
-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) |