conf: improve error message
Replace "command" with "directive" for consistency with the documentation.
This commit is contained in:
parent
58da0c0ad2
commit
2bb0769516
1 changed files with 1 additions and 1 deletions
2
conf.c
2
conf.c
|
@ -695,7 +695,7 @@ CNF_ParseLine(const char *filename, int number, char *line)
|
||||||
!strcasecmp(command, "linux_hz")) {
|
!strcasecmp(command, "linux_hz")) {
|
||||||
LOG(LOGS_WARN, "%s directive is no longer supported", command);
|
LOG(LOGS_WARN, "%s directive is no longer supported", command);
|
||||||
} else {
|
} else {
|
||||||
other_parse_error("Invalid command");
|
other_parse_error("Invalid directive");
|
||||||
}
|
}
|
||||||
|
|
||||||
processed_file = processed_command = NULL;
|
processed_file = processed_command = NULL;
|
||||||
|
|
Loading…
Reference in a new issue