diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-03-24 00:46:53 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-03-24 00:46:53 +0000 |
commit | 3ffd9179262242acc01ed93b749aa55a938cf381 (patch) | |
tree | f199314aa20920c5136206755786413ba5e809c0 /src/core/db_plain.cpp | |
parent | 14fc57d24b5b3ed622d0603011d33b06780ca071 (diff) |
Rewrote arg parsing system, changed lots of std::string*s to std::string&, made --config arg, and made Anope print out a few lines of information when starting
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2833 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/db_plain.cpp')
-rw-r--r-- | src/core/db_plain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/db_plain.cpp b/src/core/db_plain.cpp index 89fc8d469..10e21359c 100644 --- a/src/core/db_plain.cpp +++ b/src/core/db_plain.cpp @@ -1039,7 +1039,7 @@ class DBPlain : public Module } std::string Param; for (j = 0; ChannelModes[j].Value != -1; ++j) - if (ci->GetParam(ChannelModes[j].Value, &Param)) + if (ci->GetParam(ChannelModes[j].Value, Param)) db << "MD MLP " << ChannelModes[j].Name << " " << Param; if (!ci->memos.memos.empty()) { |