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:
+1
-1
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user