Fix config copy-paste error

This commit is contained in:
Christopher Wellons
2019-02-03 18:53:22 -05:00
parent 5e12d658ce
commit 2a9c514702

View File

@@ -428,7 +428,7 @@ config_load(struct config *c, const char *file, int hardfail)
config_set_max_line_length(c, tokens[1], hardfail); config_set_max_line_length(c, tokens[1], hardfail);
break; break;
case KEY_MAX_CLIENTS: case KEY_MAX_CLIENTS:
config_set_max_line_length(c, tokens[1], hardfail); config_set_max_clients(c, tokens[1], hardfail);
break; break;
case KEY_LOG_LEVEL: { case KEY_LOG_LEVEL: {
errno = 0; errno = 0;