summaryrefslogtreecommitdiff
path: root/modules/commands/os_logsearch.cpp
diff options
context:
space:
mode:
authorlethality <lethality@anope.org>2012-10-03 21:22:03 +0100
committerlethality <lethality@anope.org>2012-10-03 21:22:03 +0100
commitdcfae6332e9b4ba86d8fc7396c63a2176c551dae (patch)
tree006850bd8ab1538d89fb6f6d0e5411b265ee0397 /modules/commands/os_logsearch.cpp
parent69437bb32493345409d5e14dc1b4c26fd8ac73f7 (diff)
Some minor fixes/typos
Diffstat (limited to 'modules/commands/os_logsearch.cpp')
-rw-r--r--modules/commands/os_logsearch.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/os_logsearch.cpp b/modules/commands/os_logsearch.cpp
index 806d35ca1..ef574f094 100644
--- a/modules/commands/os_logsearch.cpp
+++ b/modules/commands/os_logsearch.cpp
@@ -121,7 +121,7 @@ class CommandOSLogSearch : public Command
unsigned count = 0;
for (std::list<Anope::string>::iterator it = matches.begin(), it_end = matches.end(); it != it_end; ++it)
source.Reply("#%d: %s", ++count, it->c_str());
- source.Reply(_("Showed %d/%d matches for \2%s\2"), replies, found, search_string.c_str());
+ source.Reply(_("Showed %d/%d matches for \2%s\2"), found, replies, search_string.c_str());
}
bool OnHelp(CommandSource &source, const Anope::string &subcommand) anope_override
@@ -130,7 +130,7 @@ class CommandOSLogSearch : public Command
source.Reply(" ");
source.Reply(_("This command searches the Services logfiles for messages\n"
"that match the given pattern. The day and limit argument\n"
- "may be used to specifcy how many days of logs to search\n"
+ "may be used to specify how many days of logs to search\n"
"and the number of replies to limit to. By default this\n"
"command searches one week of logs, and limits replies\n"
"to 50.\n"