1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 09:43:13 +02:00

Fix hybrid to compile

This commit is contained in:
Adam
2016-01-23 10:53:22 -05:00
parent e955db6e85
commit 75dd784538
+2 -2
View File
@@ -33,7 +33,7 @@ class HybridProto : public IRCDProto
void SendSVSKillInternal(const MessageSource &source, User *u, const Anope::string &buf) anope_override
{
IRCDProto::SendSVSKillInternal(source, u, buf);
user->KillInternal(source, buf);
u->KillInternal(source, buf);
}
public:
@@ -80,7 +80,7 @@ class HybridProto : public IRCDProto
void SendSGLine(User *, const XLine *x) anope_override
{
UplinkSocket::Message(Config->GetClient("OperServ")) << "XLINE * " << x->mask << " " (x->expires ? x->expires - Anope::CurTime : 0) " :" << x->GetReason();
UplinkSocket::Message(Config->GetClient("OperServ")) << "XLINE * " << x->mask << " " << (x->expires ? x->expires - Anope::CurTime : 0) << " :" << x->GetReason();
}
void SendSZLineDel(const XLine *x) anope_override