mirror of
https://github.com/anope/anope.git
synced 2026-06-28 05:36:38 +02:00
Simplify several boolean expressions.
This commit is contained in:
+1
-4
@@ -260,10 +260,7 @@ void InfoFormatter::AddOption(const Anope::string &opt)
|
||||
bool Anope::IsFile(const Anope::string &filename)
|
||||
{
|
||||
struct stat fileinfo;
|
||||
if (!stat(filename.c_str(), &fileinfo))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
return stat(filename.c_str(), &fileinfo) == 0;
|
||||
}
|
||||
|
||||
time_t Anope::DoTime(const Anope::string &s)
|
||||
|
||||
Reference in New Issue
Block a user