1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 11:13:13 +02:00

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
This commit is contained in:
Adam-
2010-03-24 00:46:53 +00:00
parent 14fc57d24b
commit 3ffd917926
16 changed files with 223 additions and 288 deletions
+1 -1
View File
@@ -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())
{