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.
This commit is contained in:
Joseph Herlant 2018-11-15 12:01:22 -08:00 committed by Willy Tarreau
parent cf92b6d332
commit 76dbe785b5
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}