1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 16:46:39 +02:00

Fixed some Windows problems

This commit is contained in:
Adam
2010-10-22 04:18:57 -04:00
parent 791c2b89a5
commit eb8f3a799c
11 changed files with 23 additions and 17 deletions
+1 -1
View File
@@ -174,7 +174,7 @@ class RatboxProto : public IRCDProto
void SendClientIntroduction(const User *u, const Anope::string &modes)
{
EnforceQlinedNick(u->nick, "");
send_cmd(TS6SID, "UID %s 1 %ld %s %s %s 0 %s :%s", u->nick.c_str(), u->timestamp, modes.c_str(), u->GetIdent().c_str(), u->host.c_str(), u->GetUID().c_str(), u->realname.c_str());
send_cmd(TS6SID, "UID %s 1 %ld %s %s %s 0 %s :%s", u->nick.c_str(), static_cast<long>(u->timestamp), modes.c_str(), u->GetIdent().c_str(), u->host.c_str(), u->GetUID().c_str(), u->realname.c_str());
}
void SendPartInternal(const BotInfo *bi, const Channel *chan, const Anope::string &buf)