diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-01-03 04:36:36 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-01-03 04:36:36 +0000 |
commit | ed568f4750f41b367e2d74406cb76f67edb83bbf (patch) | |
tree | 52737a2ed7c05e1893c2b4a9fd98da8300617f2f /src/tools/db-convert.c | |
parent | de824a599ab162324e4e24c88945ba874dbf1ed9 (diff) |
Fixed db-convert to really convert vhosts
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2728 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/tools/db-convert.c')
-rw-r--r-- | src/tools/db-convert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/db-convert.c b/src/tools/db-convert.c index c70f41ecd..4a82d0f82 100644 --- a/src/tools/db-convert.c +++ b/src/tools/db-convert.c @@ -458,7 +458,7 @@ int main(int argc, char *argv[]) HostCore *hc = findHostCore(na->nick); if (hc) { - fs << "MD VHOST " << hc->creator << " " << hc->time << " " << hc->vHost << " :" << hc->vIdent << std::endl; + fs << "MD VHOST " << hc->creator << " " << hc->time << " " << hc->vHost << " :" << (hc->vIdent ? hc->vIdent : "") << std::endl; } } } |