mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-11 01:41:49 -04:00
CLEANUP: config: Fix warning about invalid small buffer size
"than" must be used instead of "to".
This commit is contained in:
parent
0fd0f4be44
commit
34d6cf6c02
1 changed files with 1 additions and 1 deletions
|
|
@ -2327,7 +2327,7 @@ int check_config_validity()
|
|||
if (global.tune.bufsize_small == global.tune.bufsize)
|
||||
global.tune.bufsize_small = 0;
|
||||
else if (global.tune.bufsize_small > global.tune.bufsize) {
|
||||
ha_warning("invalid small buffer size %d bytes which is greater to default bufsize %d bytes.\n",
|
||||
ha_warning("invalid small buffer size %d bytes which is greater than default bufsize %d bytes.\n",
|
||||
global.tune.bufsize_small, global.tune.bufsize);
|
||||
global.tune.bufsize_small = 0;
|
||||
err_code |= ERR_WARN;
|
||||
|
|
|
|||
Loading…
Reference in a new issue