diff options
author | Adam <Adam@anope.org> | 2010-10-22 04:18:57 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-10-22 04:20:34 -0400 |
commit | eb8f3a799ca006ac4ca03b77df9bad5f2b6cd3d5 (patch) | |
tree | d9c47c3c6928be86cd07d1258b66623a1d2708bb /src/send.cpp | |
parent | 791c2b89a5b09d3e3e3785669b29438ffec26295 (diff) |
Fixed some Windows problems
Diffstat (limited to 'src/send.cpp')
-rw-r--r-- | src/send.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/send.cpp b/src/send.cpp index b7f7821ae..550bcab7c 100644 --- a/src/send.cpp +++ b/src/send.cpp @@ -46,8 +46,8 @@ void send_cmd(const Anope::string &source, const char *fmt, ...) } else { - UplinkSock->Write("%s", buf); - Log(LOG_RAWIO) << "Sent: "<< buf; + UplinkSock->Write(buf); + Log(LOG_RAWIO) << "Sent: " << buf; } va_end(args); |