diff options
author | Bram Matthys <syzop@vulnscan.org> | 2024-03-10 08:24:01 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-11 18:30:55 +0000 |
commit | b09632d1c3a504d106d6a45a514fec1efa50d7cc (patch) | |
tree | eb0b77af17c024601d597bfd3cb05d178e294b46 /modules | |
parent | cd614831dea507de6bdb2a2d1143b8373603f9e8 (diff) |
Fix OS SQLINE expiry with UnrealIRCd
Diffstat (limited to 'modules')
-rw-r--r-- | modules/protocol/unreal4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unreal4.cpp b/modules/protocol/unreal4.cpp index ff12c8a0f..939a68eea 100644 --- a/modules/protocol/unreal4.cpp +++ b/modules/protocol/unreal4.cpp @@ -196,7 +196,7 @@ class UnrealIRCdProto : public IRCDProto */ void SendSQLine(User *, const XLine *x) anope_override { - UplinkSocket::Message() << "SQLINE " << x->mask << " :" << x->GetReason(); + UplinkSocket::Message() << "TKL + Q * " << x->mask << " " << x->by << " " << x->expires << " " << x->created << " :" << x->GetReason(); } /* Functions that use serval cmd functions */ |