From cb82b371fc71b7f22f05077160d7a0d4e20dc470 Mon Sep 17 00:00:00 2001 From: pk910 Date: Wed, 24 Aug 2011 01:54:55 +0200 Subject: [PATCH] fixed srvx language fail (minimum must NOT be greater than the maximum - it must be lower ;)) --- src/chanserv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chanserv.c b/src/chanserv.c index ba74d70..28db426 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -209,7 +209,7 @@ static const struct message_entry msgtab[] = { /* User management */ { "CSMSG_ADDED_USER", "Added %s to the %s user list with access %d." }, { "CSMSG_DELETED_USER", "Deleted %s (with access %d) from the %s user list." }, - { "CSMSG_BAD_RANGE", "Invalid access range; minimum (%d) must be greater than maximum (%d)." }, + { "CSMSG_BAD_RANGE", "Invalid access range; minimum (%d) must be lower than maximum (%d)." }, { "CSMSG_DELETED_USERS", "Deleted accounts matching $b%s$b with access from $b%d$b to $b%d$b from the %s user list." }, { "CSMSG_TRIMMED_USERS", "Trimmed $b%d users$b with access from %d to %d from the %s user list who were inactive for at least %s." }, { "CSMSG_INCORRECT_ACCESS", "%s has access $b%d$b, not %s." }, -- 2.20.1