diff options
| author | Adam <Adam@anope.org> | 2010-06-21 13:27:41 -0400 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2010-06-21 16:16:11 -0400 |
| commit | fb16ce72a0b5a3ce336e003327c8d1740f4fdb98 (patch) | |
| tree | 8b650103123016e10fb50c447d6c7a3e3f16efc5 /src/core | |
| parent | 36bf5fcb266b2dbc5262940e29a97f1ad985ffb1 (diff) | |
Fixed some more problems with db-convert
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/db_plain.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/db_plain.cpp b/src/core/db_plain.cpp index 82a2c0bd4..d88bbbdaa 100644 --- a/src/core/db_plain.cpp +++ b/src/core/db_plain.cpp @@ -73,6 +73,8 @@ static void ReadDatabase(Module *m = NULL) buf.erase(buf.begin()); if (!buf.empty() && !sep.StreamEnd()) params.push_back(buf + " " + sep.GetRemaining()); + else if (!sep.StreamEnd()) + params.push_back(sep.GetRemaining()); else if (!buf.empty()) params.push_back(buf); break; |
