From 4a752889adf406111a40b2060a691d2ea9f2a677 Mon Sep 17 00:00:00 2001 From: jay Date: Thu, 31 May 2007 08:15:05 +0000 Subject: [PATCH] Fixed typos in error messages. Correction from Jakub Bogusz --- ChangeLog | 5 +++++ find/parser.c | 9 ++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 888f78a..f3ea93c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-05-31 Jakub Bogusz (trivial change) + + * find/parser.c (parse_group): Correct typo in error message. + (check_path_safety): same + 2007-05-27 James Youngman * import-gnulib.config (modules): Import sys_stat. diff --git a/find/parser.c b/find/parser.c index f2316eb..bedf9d9 100644 --- a/find/parser.c +++ b/find/parser.c @@ -999,8 +999,8 @@ parse_group (const struct parser_table* entry, char **argv, int *arg_ptr) { /* XXX: no test in test suite for this */ error(1, 0, _("%s is not the name of an existing group and" - " it does not look like a numeic group ID because " - "it has the unexpected suffix %s"), + " it does not look like a numeric group ID " + "because it has the unexpected suffix %s"), quotearg_n_style(0, options.err_quoting_style, groupname), quotearg_n_style(1, options.err_quoting_style, groupname+gid_len)); return false; @@ -2869,7 +2869,10 @@ check_path_safety(const char *action, char **argv) else if ('/' != s[0]) { /* Relative paths are also dangerous in $PATH. */ - error(1, 0, _("The ralative path %s is included in the PATH environment variable, which is insecure in combination with the %s action of find. Please remove that entry from $PATH"), + error(1, 0, _("The relative path %s is included in the PATH " + "environment variable, which is insecure in " + "combination with the %s action of find. " + "Please remove that entry from $PATH"), safely_quote_err_filename(0, s), action); } -- 2.11.4.GIT