chore: src/lib/server/Config remove redundant c_str call
This commit is contained in:
committed by
Chris Rizzitello
parent
991293dd0c
commit
6b7291f4b1
@ -715,7 +715,7 @@ void Config::readSectionOptions(ConfigReadContext &s)
|
||||
if (handled) {
|
||||
// make sure handled options aren't followed by more values
|
||||
if (i < line.size() && (line[i] == ',' || line[i] == ';')) {
|
||||
throw XConfigRead(s, "to many arguments to %s", name.c_str());
|
||||
throw XConfigRead(s, "to many arguments to %s", name);
|
||||
}
|
||||
} else {
|
||||
// make filter rule
|
||||
|
||||
Reference in New Issue
Block a user