From d2a71fd3447c8bac65cc26077e2b9fc3fb0b28a7 Mon Sep 17 00:00:00 2001 From: danieldg Date: Wed, 29 Apr 2009 02:43:16 +0000 Subject: Overloading SetMode seems to cause the compiler to interpret "" as a bool and not a string. Fixes bug #849 git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11335 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/channels.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/channels.cpp') diff --git a/src/channels.cpp b/src/channels.cpp index c8334d42e..a6ed3406d 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -36,7 +36,7 @@ void Channel::SetMode(char mode,bool mode_on) modes[mode-65] = mode_on; } -void Channel::SetMode(char mode, std::string parameter) +void Channel::SetModeParam(char mode, std::string parameter) { CustomModeList::iterator n = custom_mode_params.find(mode); // always erase, even if changing, so that the map gets the new value -- cgit v1.2.3