summaryrefslogtreecommitdiff
path: root/src/xline.cpp
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2013-05-16 16:01:51 +0200
committerattilamolnar <attilamolnar@hush.com>2013-05-18 21:24:22 +0200
commit3ce33ee0e6bc0b8fbe2a564a37e02d2e56510b06 (patch)
tree9274c8a44c0d57917bfe79366308fbd6d2e4b90e /src/xline.cpp
parentf3d134a5b642b83e865c03b45c313df7f829ba15 (diff)
Change the signature of User::ForceNickChange() to accept const std::string& instead of const char*
Diffstat (limited to 'src/xline.cpp')
-rw-r--r--src/xline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xline.cpp b/src/xline.cpp
index ff86997bb..d347e3763 100644
--- a/src/xline.cpp
+++ b/src/xline.cpp
@@ -642,7 +642,7 @@ bool QLine::Matches(User *u)
void QLine::Apply(User* u)
{
/* Force to uuid on apply of qline, no need to disconnect any more :) */
- u->ForceNickChange(u->uuid.c_str());
+ u->ForceNickChange(u->uuid);
}