summaryrefslogtreecommitdiff
path: root/src/commands/cmd_motd.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-10-13 19:07:44 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-10-13 19:07:44 +0200
commit9bb839b6a2873a366ac8685c3c8846b6837f85ca (patch)
tree34b4fdfa7ba3419081089790d1665c5abc249719 /src/commands/cmd_motd.cpp
parent44542c1f1acabbf00f8f468f3bb837c5a8b2736e (diff)
parent6935ce2956fed99d5484da90e614b7126e5275d3 (diff)
Merge pull request #933 from SaberUK/insp20+fix-llvm34
Fix various warnings when building with LLVM 3.5.
Diffstat (limited to 'src/commands/cmd_motd.cpp')
-rw-r--r--src/commands/cmd_motd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_motd.cpp b/src/commands/cmd_motd.cpp
index 8e227723e..869a9c353 100644
--- a/src/commands/cmd_motd.cpp
+++ b/src/commands/cmd_motd.cpp
@@ -53,7 +53,7 @@ CmdResult CommandMotd::Handle (const std::vector<std::string>& parameters, User
if (parameters.size() > 0 && parameters[0] != ServerInstance->Config->ServerName)
return CMD_SUCCESS;
- ConfigTag* tag = NULL;
+ ConfigTag* tag = ServerInstance->Config->EmptyTag;
if (IS_LOCAL(user))
tag = user->GetClass()->config;
std::string motd_name = tag->getString("motd", "motd");