summaryrefslogtreecommitdiff
path: root/src/chcon.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/chcon.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/chcon.c')
-rw-r--r--src/chcon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chcon.c b/src/chcon.c
index 02f190dae..5d0a86ba2 100644
--- a/src/chcon.c
+++ b/src/chcon.c
@@ -257,7 +257,7 @@ process_file (FTS *fts, FTSENT *ent)
break;
case FTS_ERR:
- error (0, ent->fts_errno, _("%s"), quote (file_full_name));
+ error (0, ent->fts_errno, "%s", quote (file_full_name));
ok = false;
break;