summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-11-24 19:03:55 +0000
committerPeter Powell <petpow@saberuk.com>2018-11-24 19:03:55 +0000
commit6596fb5ffea7a23827c994168ca1611918857af6 (patch)
tree1474707ebfa495fba26c40e75b8ee85ce8fdb93f /src/modules
parentb00cd0295ee665443b2a5df7d6fccba9089e6518 (diff)
Fix some incorrect conditions in the showfile module.
Thanks to @genius3000 for pointing this out.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_showfile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_showfile.cpp b/src/modules/m_showfile.cpp
index 3c1c77f0b..150b43ebc 100644
--- a/src/modules/m_showfile.cpp
+++ b/src/modules/m_showfile.cpp
@@ -55,13 +55,13 @@ class CommandShowFile : public Command
{
if (method == SF_NUMERIC)
{
- if (!introtext.empty() || !intronumeric)
+ if (!introtext.empty() && intronumeric)
user->WriteRemoteNumeric(intronumeric, introtext);
for (file_cache::const_iterator i = contents.begin(); i != contents.end(); ++i)
user->WriteRemoteNumeric(textnumeric, InspIRCd::Format("- %s", i->c_str()));
- if (!endtext.empty() || !endnumeric)
+ if (!endtext.empty() && endnumeric)
user->WriteRemoteNumeric(endnumeric, endtext.c_str());
}
else if (IS_LOCAL(user))