From: Joseph Herlant Date: Thu, 15 Nov 2018 20:01:22 +0000 (-0800) Subject: MINOR: Fix typo in error message in the standard subsystem X-Git-Tag: v1.9-dev7~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=76dbe785b532f98362992676d608d74f14f3ab41;p=thirdparty%2Fhaproxy.git MINOR: Fix typo in error message in the standard subsystem Fix a typo in an error message that could be user-visible when running out of memory in the parse_binary function. --- diff --git a/src/standard.c b/src/standard.c index 38e0b6fda4..a33ad9bd6f 100644 --- a/src/standard.c +++ b/src/standard.c @@ -2186,7 +2186,7 @@ int parse_binary(const char *source, char **binstr, int *binstrlen, char **err) } else { if (*binstrlen < len) { - memprintf(err, "no space avalaible in the buffer. expect %d, provides %d", + memprintf(err, "no space available in the buffer. expect %d, provides %d", len, *binstrlen); return 0; }