From a6a92722ff61bec29693fae0794f7be769edbe16 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 11 Dec 2001 11:46:49 +0000 Subject: Include the word `fail' in some diagnostics to make it clearer that they indicate a failure. s/getting attributes/failed to get attributes/ --- src/touch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/touch.c') diff --git a/src/touch.c b/src/touch.c index e3ec8ae47..9a4578682 100644 --- a/src/touch.c +++ b/src/touch.c @@ -162,7 +162,7 @@ touch (const char *file) if (open_errno) error (0, open_errno, _("creating %s"), quote (file)); else - error (0, errno, _("getting attributes of %s"), quote (file)); + error (0, errno, _("failed to get attributes of %s"), quote (file)); close (fd); return 1; } @@ -348,7 +348,7 @@ main (int argc, char **argv) if (use_ref) { if (stat (ref_file, &ref_stats)) - error (1, errno, _("getting attributes of %s"), quote (ref_file)); + error (1, errno, _("failed to get attributes of %s"), quote (ref_file)); date_set++; } -- cgit v1.2.1