summaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-07-11 21:15:02 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-07-11 21:15:02 +0000
commit0b070b52bc8e8ceb52388e45cea90f4add119c4f (patch)
treec8934030ba064a432d4807fbe93b002ea0210d25 /src/commands
parentf8d9c513174926eae5b0545c56c310c90f295132 (diff)
Convert API to use std::string, fixes my slight bug from earlier and looks tidier
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9956 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/cmd_part.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/commands/cmd_part.cpp b/src/commands/cmd_part.cpp
index 352b967b5..dcc50609b 100644
--- a/src/commands/cmd_part.cpp
+++ b/src/commands/cmd_part.cpp
@@ -47,8 +47,7 @@ CmdResult CommandPart::Handle (const std::vector<std::string>& parameters, User
if (c)
{
- const char *rreason = reason.empty() ? NULL : reason.c_str();
- if (!c->PartUser(user, rreason))
+ if (!c->PartUser(user, reason))
/* Arse, who stole our channel! :/ */
delete c;
}