diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-03 21:03:13 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-03 21:03:13 +0000 |
commit | e4dfff282dd4b95ee5ade2914b7be1ded73d5eb9 (patch) | |
tree | c3515f3bf8c57fa85ae42f4e2c7b3d66602a746c /src/protocol/unreal32.c | |
parent | c31f6498c38bc17832e399d49cbb86a145b9d06d (diff) |
Remove IRCdProto::SendGuestNick(). It's identical to IRCdProto::SendClientIntroduction().
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1513 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r-- | src/protocol/unreal32.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 7ade811c8..6a99e4b33 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -667,12 +667,6 @@ class UnrealIRCdProto : public IRCDProto } } - void SendGuestNick(const char *nick, const char *user, const char *host, const char *real, const char *modes) - { - send_cmd(NULL, "%s %s 1 %ld %s %s %s 0 %s %s%s :%s", send_token("NICK", "&"), nick, static_cast<long>(time(NULL)), user, host, ServerName, modes, host, - myIrcd->nickip ? " *" : " ", real); - } - void SendModeInternal(BotInfo *source, const char *dest, const char *buf) { if (!buf) return; |