summaryrefslogtreecommitdiff
path: root/modules/commands/ns_alist.cpp
diff options
context:
space:
mode:
authorDukePyrolator <DukePyrolator@anope.org>2012-10-02 05:35:44 +0200
committerDukePyrolator <DukePyrolator@anope.org>2012-10-02 05:35:44 +0200
commit20a6f827539f0fe5537e83aecc6ed1641bb0acdf (patch)
tree4220fc4dc406a5762929d0bbef174d0b2cb54bba /modules/commands/ns_alist.cpp
parentaec6cac8caa645d4e6a9fed42ca1d7e2f3c5057a (diff)
modified the nickserv alist command to return nc->display instead of the parameter provided by the user
Diffstat (limited to 'modules/commands/ns_alist.cpp')
-rw-r--r--modules/commands/ns_alist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_alist.cpp b/modules/commands/ns_alist.cpp
index 4b7e7cb33..ef018ea8b 100644
--- a/modules/commands/ns_alist.cpp
+++ b/modules/commands/ns_alist.cpp
@@ -44,7 +44,7 @@ class CommandNSAList : public Command
list.addColumn("Number").addColumn("Channel").addColumn("Access");
- source.Reply(_("Channels that \002%s\002 has access on:"), nick.c_str());
+ source.Reply(_("Channels that \002%s\002 has access on:"), nc->display.c_str());
for (registered_channel_map::const_iterator it = RegisteredChannelList->begin(), it_end = RegisteredChannelList->end(); it != it_end; ++it)
{