diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-26 18:40:57 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-26 18:40:57 +0000 |
commit | 846569999270b5f50ce9e2af6061a4c83e2b2e01 (patch) | |
tree | 135d6fe6d40080d4e19f4f662f00d42a7eb5c5f3 /src | |
parent | cea91cb7e7b6a01feddbff4776f9181ee0239b64 (diff) |
- 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
Diffstat (limited to 'src')
-rw-r--r-- | src/s_user.c | 10 |
1 files 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); } |