From dd01ffb2f05db639f54a1bc29cabffc705addeea Mon Sep 17 00:00:00 2001 From: "dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Wed, 9 Jun 2004 14:13:49 +0000 Subject: [PATCH] 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 --- Changes | 1 + nickserv.c | 2 ++ version.log | 6 +++++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 402ddc829..9791ab8d6 100644 --- a/Changes +++ b/Changes @@ -7,6 +7,7 @@ Provided by Anope Dev. - 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)