From e90d661e8d3dfe53d3221319a2ee5c84bfe599b3 Mon Sep 17 00:00:00 2001 From: PeGaSuS Date: Fri, 29 Jan 2021 19:11:36 +0100 Subject: [PATCH] Fixed typo in ELINE example flags, from `f` to `F` (spamfilter) (#130) --- doc/conf/help/help.conf | 2 +- src/modules/tkl.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/conf/help/help.conf b/doc/conf/help/help.conf index f73cbd593..89fc144d1 100644 --- a/doc/conf/help/help.conf +++ b/doc/conf/help/help.conf @@ -952,7 +952,7 @@ help Eline { " K-Lines, G-Lines and other types of bans."; " Syntax: ELINE (Adds an E-Line)"; " ELINE - (Removes an E-Line)"; - " Example: ELINE *@unrealircd.org kGf 0 This user is exempt"; + " Example: ELINE *@unrealircd.org kGF 0 This user is exempt"; " Valid are:"; " ==-Type--------Name---------------------------Explanation-----------------------=="; " k | K-Line | Bypass K-Lines "; diff --git a/src/modules/tkl.c b/src/modules/tkl.c index 98b3f4386..4c5387413 100644 --- a/src/modules/tkl.c +++ b/src/modules/tkl.c @@ -1533,8 +1533,8 @@ void eline_syntax(Client *client) sendnotice(client, "8: Bypass antimixedutf8 module"); sendnotice(client, "v: Bypass ban version { } blocks"); sendnotice(client, "Examples:"); - sendnotice(client, "/ELINE *@unrealircd.org kGf 0 This user is exempt"); - sendnotice(client, "/ELINE ~S:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef kGf 0 Trusted user with this certificate fingerprint"); + sendnotice(client, "/ELINE *@unrealircd.org kGF 0 This user is exempt"); + sendnotice(client, "/ELINE ~S:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef kGF 0 Trusted user with this certificate fingerprint"); sendnotice(client, "-"); sendnotice(client, "To get a list of all current ELINEs, type: /STATS except"); }