diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-10 17:01:21 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-10 17:01:21 +0000 |
commit | b48c18b0117b7d49c834202c88e70b02b633bb9e (patch) | |
tree | 2fd3f259e0e81297b459376ab977d2681a7eaca3 /src | |
parent | b496e60eb0d18fd4608bf2f75cacfbb994d4a40a (diff) |
Fixes..
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1981 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ms_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ms_list.c b/src/core/ms_list.c index fab0699fa..f67c34d57 100644 --- a/src/core/ms_list.c +++ b/src/core/ms_list.c @@ -37,7 +37,7 @@ class CommandMSList : public Command if (param && *param == '#') { chan = param; - param = params.size() > 1 ? params[1].c)_str() : NULL; + param = params.size() > 1 ? params[1].c_str() : NULL; if (!(ci = cs_findchan(chan))) { notice_lang(s_MemoServ, u, CHAN_X_NOT_REGISTERED, chan); |