diff options
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r-- | src/protocol/unreal32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index abe62c665..960dcf8db 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -556,7 +556,7 @@ void UnrealIRCdProto::SendClientIntroduction(const char *nick, const char *user, SendSQLine(nick, "Reserved for services"); } -void UnrealIRCdProto::SendKick(const char *source, const char *chan, const char *user, const char *buf) +void UnrealIRCdProto::SendKickInternal(const char *source, const char *chan, const char *user, const char *buf) { if (buf) send_cmd(source, "%s %s %s :%s", send_token("KICK", "H"), chan, user, buf); else send_cmd(source, "%s %s %s", send_token("KICK", "H"), chan, user); |