diff options
author | Adam <Adam@Anope.org> | 2010-05-24 23:36:40 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-18 21:04:05 -0400 |
commit | 2fba686904e6f78ebab35df171c5757afeebf05d (patch) | |
tree | 523782bccc479606206f271cd6708b2f70fe8278 /src/init.c | |
parent | 3a2c2a916a26f4fa1844e71a9f1c2fc25337fd2b (diff) |
Burned slist, rewrote operservs XLine code
Diffstat (limited to 'src/init.c')
-rw-r--r-- | src/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/init.c b/src/init.c index faa37764b..2c2a64ed4 100644 --- a/src/init.c +++ b/src/init.c @@ -43,7 +43,8 @@ void introduce_user(const std::string &user) if (user.empty() || ci_bi_nick == user) { ircdproto->SendClientIntroduction(bi->nick, bi->user, bi->host, bi->real, ircd->pseudoclient_mode, bi->uid); - ircdproto->SendSQLine(bi->nick, "Reserved for services"); + XLine x(bi->nick.c_str(), "Reserved for services"); + ircdproto->SendSQLine(&x); } } } |