From: Cyril Bonté Date: Wed, 4 Apr 2012 10:57:19 +0000 (+0200) Subject: CLEANUP: fix typo in findserver() log message X-Git-Tag: v1.5-dev9~122 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0bb519e6e5e4421dca93388f10c70d8a2da60742;p=thirdparty%2Fhaproxy.git CLEANUP: fix typo in findserver() log message There was a typo in the findserver() log message : "found" was written "fould". --- diff --git a/src/proxy.c b/src/proxy.c index 123fd61768..84d430aba9 100644 --- a/src/proxy.c +++ b/src/proxy.c @@ -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;