From 25c3fd51b7febfd754fa9718ab625a95bfd52c2b Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sat, 22 Mar 2025 21:45:29 +0000 Subject: [PATCH] Fix a missing format argument in ns_maxemail. --- modules/nickserv/ns_maxemail.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nickserv/ns_maxemail.cpp b/modules/nickserv/ns_maxemail.cpp index 4b28b84af..973c3158e 100644 --- a/modules/nickserv/ns_maxemail.cpp +++ b/modules/nickserv/ns_maxemail.cpp @@ -45,7 +45,7 @@ class NSMaxEmail final if (this->CountEmail(email, ignoreself ? source.GetAccount() : NULL) < NSEmailMax) return false; - source.Reply(NSEmailMax, N_("The email address \002%s\002 has reached its usage limit of %u user.", "The email address \002%s\002 has reached its usage limit of %u users."), email.c_str()); + source.Reply(NSEmailMax, N_("The email address \002%s\002 has reached its usage limit of %u user.", "The email address \002%s\002 has reached its usage limit of %u users."), email.c_str(), NSEmailMax); return true; }