summaryrefslogtreecommitdiff
path: root/src/nickserv.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-03 21:03:13 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-03 21:03:13 +0000
commite4dfff282dd4b95ee5ade2914b7be1ded73d5eb9 (patch)
treec3515f3bf8c57fa85ae42f4e2c7b3d66602a746c /src/nickserv.c
parentc31f6498c38bc17832e399d49cbb86a145b9d06d (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/nickserv.c')
-rw-r--r--src/nickserv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nickserv.c b/src/nickserv.c
index f4f1dfae3..deefa6112 100644
--- a/src/nickserv.c
+++ b/src/nickserv.c
@@ -846,7 +846,7 @@ void cancel_user(User * u)
ircdproto->SendSVSHold(na->nick);
} else {
if (ircd->svsnick) {
- ircdproto->SendGuestNick(u->nick, NSEnforcerUser,
+ ircdproto->SendClientIntroduction(u->nick, NSEnforcerUser,
NSEnforcerHost,
"Services Enforcer", "+");
add_ns_timeout(na, TO_RELEASE, NSReleaseTimeout);
@@ -857,7 +857,7 @@ void cancel_user(User * u)
}
} else {
if (ircd->svsnick) {
- ircdproto->SendGuestNick(u->nick, NSEnforcerUser,
+ ircdproto->SendClientIntroduction(u->nick, NSEnforcerUser,
NSEnforcerHost,
"Services Enforcer", "+");
add_ns_timeout(na, TO_RELEASE, NSReleaseTimeout);