diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-05 21:39:38 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-05 21:39:38 +0000 |
commit | eda321aa90bfb714013fc2651c671f2415b5280a (patch) | |
tree | ec4c84789045db21301c7d6e7493d38f2be7f0ad /src/send.c | |
parent | 4e11583205327ce9d65c744473baff28d54979b3 (diff) |
Merge branch 'anopeng' into anopeng-config
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1425 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/send.c')
-rw-r--r-- | src/send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/send.c b/src/send.c index 446020f35..0d4c6d4e9 100644 --- a/src/send.c +++ b/src/send.c @@ -67,7 +67,7 @@ void send_cmd(const std::string &source, const char *fmt, ...) if (!source.empty()) { sockprintf(servsock, ":%s %s\r\n", source.c_str(), buf); - eventprintf(":%s %s", source, buf); + eventprintf(":%s %s", source.c_str(), buf); if (debug) alog("debug: Sent: :%s %s", source.c_str(), buf); } |