diff options
author | Adam <Adam@anope.org> | 2012-10-29 17:47:26 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-29 17:47:26 -0400 |
commit | c2a8ad26af83b069693e84d0fe32d1549029d5f0 (patch) | |
tree | 280f0dd0bc4a41c0cd08dc8496c4afb11a7c8512 /modules/commands/cs_status.cpp | |
parent | fedf235c8392883bd27e342c9f0c1f8fcd30191d (diff) |
Fix formatting fail in cs_status
Diffstat (limited to 'modules/commands/cs_status.cpp')
-rw-r--r-- | modules/commands/cs_status.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_status.cpp b/modules/commands/cs_status.cpp index 80ab16cc4..b8ac38f77 100644 --- a/modules/commands/cs_status.cpp +++ b/modules/commands/cs_status.cpp @@ -57,7 +57,7 @@ public: source.Reply(_("\2%s\2 has no access on \2%s\2."), nick.c_str(), ci->name.c_str()); else { - source.Reply(_("Access for \2%s\2 on \2%s\2"), nick.c_str()); + source.Reply(_("Access for \2%s\2 on \2%s\2"), nick.c_str(), ci->name.c_str()); for (unsigned i = 0; i < ag.size(); ++i) { @@ -74,7 +74,7 @@ public: if (autokick->HasFlag(AK_ISNICK)) { if (na && *autokick->nc == na->nc) - source.Reply(_("\2%s\2 is on the auto kick list (%s)."), autokick->reason.c_str()); + source.Reply(_("\2%s\2 is on the auto kick list (%s)."), na->nc->display.c_str(), autokick->reason.c_str()); } else if (u != NULL) { |