From 14e026e685ee47d0fa9bebfbee125b9effcb2883 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 26 Aug 2022 18:06:55 +0200 Subject: [PATCH] Correct grammatical error in for DENIED error message (#11192) networking: Spell verb *set up* with space in error message --- src/networking.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/networking.c b/src/networking.c index 7b3225fe9..5dcbdd0f6 100644 --- a/src/networking.c +++ b/src/networking.c @@ -1253,7 +1253,7 @@ void clientAcceptHandler(connection *conn) { "mode option to 'no', and then restarting the server. " "3) If you started the server manually just for testing, restart " "it with the '--protected-mode no' option. " - "4) Setup a an authentication password for the default user. " + "4) Set up an authentication password for the default user. " "NOTE: You only need to do one of the above things in order for " "the server to start accepting connections from the outside.\r\n"; if (connWrite(c->conn,err,strlen(err)) == -1) {