From b80f71e88f0d42b47bce1652c22f6c667f0a7a28 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sat, 25 Jun 2022 17:03:25 +0100 Subject: Fix an inverted condition in configparser. --- src/configparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/configparser.cpp') diff --git a/src/configparser.cpp b/src/configparser.cpp index 1ab4b811c..4c7cd3141 100644 --- a/src/configparser.cpp +++ b/src/configparser.cpp @@ -418,7 +418,7 @@ void ParseStack::DoInclude(std::shared_ptr tag, int flags) FilePtr ParseStack::DoOpenFile(const std::string& name, bool isexec) { - ServerInstance->Logs.Debug("CONFIG", "Opening %s: %s", isexec ? "file" : "executable", name.c_str()); + ServerInstance->Logs.Debug("CONFIG", "Opening %s: %s", isexec ? "executable" : "file", name.c_str()); if (isexec) return FilePtr(popen(name.c_str(), "r"), pclose); else -- cgit v1.3.1-10-gc9f91