summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlethality <lethality@anope.org>2010-09-18 03:35:33 +0100
committerlethality <lethality@anope.org>2010-09-18 03:35:33 +0100
commit5ec605e42460972cc498419120a835caa9ca13ba (patch)
treec102f27f80d6c9c8728356071bb7168202032878 /src
parent227909e2cf0039737dc52872651837fe5f1702b5 (diff)
Fixed some minor punctuation and logging
Diffstat (limited to 'src')
-rw-r--r--src/users.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 362ad1717..830721b95 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -685,7 +685,7 @@ User *do_nick(const Anope::string &source, const Anope::string &nick, const Anop
}
}
- Log(user, "connect") << (ircd->nickvhost && !vhost2.empty() ? Anope::string("(") + vhost2 + ")" : "") << ") (" << user->realname << ") " << (user->ip() ? Anope::string("[") + user->ip.addr() + "] " : "") << "connected to the network (" << serv->GetName() << ")";
+ Log(user, "connect") << (ircd->nickvhost && !vhost2.empty() ? Anope::string("(") + vhost2 + ")" : "") << " (" << user->realname << ") " << (user->ip() ? Anope::string("[") + user->ip.addr() + "] " : "") << "connected to the network (" << serv->GetName() << ")";
EventReturn MOD_RESULT;
FOREACH_RESULT(I_OnPreUserConnect, OnPreUserConnect(user));