summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2014-02-10 20:08:56 +0000
committerPeter Powell <petpow@saberuk.com>2014-02-11 08:20:01 +0000
commit7fec670c9b378f5c8470204ba36a284a424a11c7 (patch)
tree722c076a747b8d3c61689f669155c9dbcb528c74 /src/inspircd.cpp
parentd481bf8eb1a2c2dcf27e58c82420e3f35b7670eb (diff)
Fix various problems detected by Clang 3.4.
- cidr.cpp: remove inverted_bits; unused since 9fad3ecb9215a0034bf407f192926b04cb5efaed. - cmd_stats.cpp: remove needless inversion and comparison to 0. - inspircd.cpp: remove needless comparison to 0. - socket.cpp: remove all_zero; unused since 03a1bf15b1da7643b237c22db1a478916a976ccf.
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index b201e38c6..766aeaf8e 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -476,7 +476,7 @@ InspIRCd::InspIRCd(int argc, char** argv) :
/* Set the finished argument values */
Config->cmdline.nofork = (do_nofork != 0);
Config->cmdline.forcedebug = (do_debug != 0);
- Config->cmdline.writelog = (!do_nolog != 0);
+ Config->cmdline.writelog = !do_nolog;
Config->cmdline.TestSuite = (do_testsuite != 0);
if (do_debug)