summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Prévot <taffit@debian.org>2011-12-08 09:38:04 -0400
committerDavid Prévot <taffit@debian.org>2011-12-08 10:44:05 -0400
commitf6da5ef3d2eee72a9092cd700f6b3b054c730e8a (patch)
treeaa974c6ba46cb7f4b4ffb6d3776bd2bab5c6088b
parentbeedf723abfcffe21508d9cd7ccb34f17c60bb67 (diff)
downloaddctrl-tools-f6da5ef3d2eee72a9092cd700f6b3b054c730e8a.tar.gz
(en) Runtime strings review by Justin B Rye
<20111208103543.GA24436@xibalba.demon.co.uk>
-rw-r--r--grep-dctrl/grep-dctrl.c4
-rw-r--r--grep-dctrl/rc.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/grep-dctrl/grep-dctrl.c b/grep-dctrl/grep-dctrl.c
index 0fc74c5..9e661bb 100644
--- a/grep-dctrl/grep-dctrl.c
+++ b/grep-dctrl/grep-dctrl.c
@@ -138,8 +138,8 @@ static struct argp_option options[] = {
{ "gt", OPT_GT, 0, 0, N_("Version number comparison: >>.") },
{ "ge", OPT_GE, 0, 0, N_("Version number comparison: >=.") },
{ "debug-optparse", OPT_OPTPARSE, 0, 0, N_("Debug option parsing.") },
- { "quiet", 'q', 0, 0, N_("Do no output to stdout.") },
- { "silent", OPT_SILENT, 0, 0, N_("Do no output to stdout.") },
+ { "quiet", 'q', 0, 0, N_("Do not output to stdout.") },
+ { "silent", OPT_SILENT, 0, 0, N_("Do not output to stdout.") },
{ "mmap", OPT_MMAP, 0, 0, N_("Attempt mmapping input files") },
{ "ignore-parse-errors", OPT_IGN_ERRS, 0, 0, N_("Ignore parse errors") },
{ "pattern", OPT_PATTERN, N_("PATTERN"), 0, N_("Specify the pattern to search for") },
diff --git a/grep-dctrl/rc.c b/grep-dctrl/rc.c
index 5cc5cf1..fb4b88b 100644
--- a/grep-dctrl/rc.c
+++ b/grep-dctrl/rc.c
@@ -158,7 +158,7 @@ struct ifile find_ifile_by_exename(const char * exename, const char * rcfname)
line_exe = strtok(line, " \t");
if (line_exe == 0) {
line_message(L_IMPORTANT, fname, lineno,
- _("syntax error: need a executable name")
+ _("syntax error: need an executable name")
);
continue;
}