1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 06:43:12 +02:00

Bug #1384 - Fixed spacing of connection log message if users have no vhost - patch from cbiedl

This commit is contained in:
Adam
2012-03-11 05:20:28 -04:00
parent ab25815694
commit 7800375510
+1 -1
View File
@@ -835,7 +835,7 @@ User *do_nick(const Anope::string &source, const Anope::string &nick, const Anop
user->SetVIdent(username);
user->SetModesInternal(modes.c_str());
Log(user, "connect") << (!vhost.empty() ? Anope::string("(") + vhost + ")" : "") << " (" << user->realname << ") " << user->ip << " connected to the network (" << serv->GetName() << ")";
Log(user, "connect") << (!vhost.empty() ? Anope::string("(") + vhost + ") " : "") << "(" << user->realname << ") " << user->ip << " connected to the network (" << serv->GetName() << ")";
bool exempt = false;
if (user->server && user->server->IsULined())