summaryrefslogtreecommitdiff
path: root/src/messages.c
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-09 21:01:05 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-09 21:01:05 +0000
commitd7d01bdc5c667a1fafd95241282b58e03b4caa5b (patch)
treef1482d8734da609923c6d8af6bc8fcb0fc187534 /src/messages.c
parentd49b3a25fda5f597491e73640dd1e76babc240eb (diff)
Squashed commit: merge next (1.9.1) back to trunk.
SVN users, NOTE: THIS WILL NOT BUILD, NOR SHOULD YOU RUN IT YET. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1953 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/messages.c')
-rw-r--r--src/messages.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messages.c b/src/messages.c
index 44c8a8d5c..55b4fa283 100644
--- a/src/messages.c
+++ b/src/messages.c
@@ -169,7 +169,7 @@ int m_privmsg(const char *source, const char *receiver, const char *msg)
if (WallBadOS)
ircdproto->SendGlobops(s_OperServ,
"Denied access to %s from %s!%s@%s (non-oper)",
- s_OperServ, u->nick, u->username,
+ s_OperServ, u->nick, u->GetIdent().c_str(),
u->host);
} else {
operserv(u, const_cast<char *>(msg)); // XXX Unsafe cast, this needs reviewing -- CyberBotX