diff options
Diffstat (limited to 'src/helperfuncs.cpp')
-rw-r--r-- | src/helperfuncs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 5aeabfd8b..f5d9aa5d9 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -81,7 +81,7 @@ std::string InspIRCd::GetServerDescription(const char* servername) FOREACH_MOD_I(this,I_OnGetServerDescription,OnGetServerDescription(servername,description)); - if (description != "") + if (!description.empty()) { return description; } @@ -435,7 +435,7 @@ void InspIRCd::OpenLog(char** argv, int argc) if (!*this->LogFileName) { - if (Config->logpath == "") + if (Config->logpath.empty()) { Config->logpath = Config->MyDir + "/ircd.log"; } |