summaryrefslogtreecommitdiff
path: root/src/chmod.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2010-07-09 11:11:05 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2010-07-09 13:56:05 -0700
commite5ca54448e50c117cf2d7d3491a2bc2f48ae0715 (patch)
treed0132dcaf9d2f9e069b96b66ca628ff2bf68c77c /src/chmod.c
parentdb4df7dda6e209e3e38fe69298624ffe92d392c7 (diff)
downloadcoreutils-e5ca54448e50c117cf2d7d3491a2bc2f48ae0715.tar.xz
chcon, chmod, chown, du: don't translate "%s"
* src/chcon.c (process_file): Replace _("%s") with "%s". * src/chmod.c (process_file): Likewise. * src/chown-core.c (change_file_owner): Likewise. * src/du.c (process_file): Likewise.
Diffstat (limited to 'src/chmod.c')
-rw-r--r--src/chmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chmod.c b/src/chmod.c
index 83f6783df..61a3807a8 100644
--- a/src/chmod.c
+++ b/src/chmod.c
@@ -212,7 +212,7 @@ process_file (FTS *fts, FTSENT *ent)
case FTS_ERR:
if (! force_silent)
- error (0, ent->fts_errno, _("%s"), quote (file_full_name));
+ error (0, ent->fts_errno, "%s", quote (file_full_name));
ok = false;
break;