diff options
author | Adam <Adam@anope.org> | 2012-03-11 05:20:28 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-03-11 05:20:28 -0400 |
commit | 7800375510450accf34316b4baf70c1de391ad1f (patch) | |
tree | 684ee6fcc0f26c190bf074db90a28d98e26990a4 /src/users.cpp | |
parent | ab258156942cd0ca95e77bad72e6f40ae8849f39 (diff) |
Bug #1384 - Fixed spacing of connection log message if users have no vhost - patch from cbiedl
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index 4e6f4e1c6..aa69f27c7 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -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()) |