]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: fix typo in findserver() log message
authorCyril Bonté <cyril.bonte@free.fr>
Wed, 4 Apr 2012 10:57:19 +0000 (12:57 +0200)
committerWilly Tarreau <w@1wt.eu>
Thu, 5 Apr 2012 07:58:25 +0000 (09:58 +0200)
There was a typo in the findserver() log message :
"found" was written "fould".

src/proxy.c

index 123fd61768fb6fe2194f05161224fc00dc0b3d60..84d430aba9fbc518d7f35eb82b537af27a60ced3 100644 (file)
@@ -366,7 +366,7 @@ struct server *findserver(const struct proxy *px, const char *name) {
                        continue;
                }
 
-               Alert("Refusing to use duplicated server '%s' fould in proxy: %s!\n",
+               Alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
                        name, px->id);
 
                return NULL;