From 846569999270b5f50ce9e2af6061a4c83e2b2e01 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 26 May 2013 18:40:57 +0000 Subject: - s_user.c:report_and_set_user_flags(): minor spelling fixes git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2124 82007160-df01-0410-b94d-b575c5fd34c7 --- src/s_user.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/s_user.c b/src/s_user.c index 0f33e6c..b70072a 100644 --- a/src/s_user.c +++ b/src/s_user.c @@ -757,7 +757,7 @@ report_and_set_user_flags(struct Client *source_p, const struct MaskItem *conf) if (IsConfDoSpoofIp(conf)) { sendto_one(source_p, - ":%s NOTICE %s :*** Spoofing your IP. congrats.", + ":%s NOTICE %s :*** Spoofing your IP. Congrats.", me.name, source_p->name); } @@ -766,7 +766,7 @@ report_and_set_user_flags(struct Client *source_p, const struct MaskItem *conf) { SetExemptKline(source_p); sendto_one(source_p, - ":%s NOTICE %s :*** You are exempt from K/D/G lines. congrats.", + ":%s NOTICE %s :*** You are exempt from K/D/G lines. Congrats.", me.name, source_p->name); } @@ -776,14 +776,14 @@ report_and_set_user_flags(struct Client *source_p, const struct MaskItem *conf) else if (IsConfExemptGline(conf)) { SetExemptGline(source_p); - sendto_one(source_p, ":%s NOTICE %s :*** You are exempt from G lines.", + sendto_one(source_p, ":%s NOTICE %s :*** You are exempt from G lines. Congrats.", me.name, source_p->name); } if (IsConfExemptResv(conf)) { SetExemptResv(source_p); - sendto_one(source_p, ":%s NOTICE %s :*** You are exempt from resvs.", + sendto_one(source_p, ":%s NOTICE %s :*** You are exempt from resvs. Congrats.", me.name, source_p->name); } @@ -792,7 +792,7 @@ report_and_set_user_flags(struct Client *source_p, const struct MaskItem *conf) { SetExemptLimits(source_p); sendto_one(source_p, - ":%s NOTICE %s :*** You are exempt from user limits. congrats.", + ":%s NOTICE %s :*** You are exempt from user limits. Congrats.", me.name,source_p->name); } -- cgit