summaryrefslogtreecommitdiff
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
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.
-rw-r--r--src/chcon.c2
-rw-r--r--src/chmod.c2
-rw-r--r--src/chown-core.c2
-rw-r--r--src/du.c2
4 files changed, 4 insertions, 4 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;
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;
diff --git a/src/chown-core.c b/src/chown-core.c
index 22a178ad9..1d3f74ced 100644
--- a/src/chown-core.c
+++ b/src/chown-core.c
@@ -305,7 +305,7 @@ change_file_owner (FTS *fts, FTSENT *ent,
case FTS_ERR:
if (! chopt->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;
diff --git a/src/du.c b/src/du.c
index 739be73ea..95c791fba 100644
--- a/src/du.c
+++ b/src/du.c
@@ -426,7 +426,7 @@ process_file (FTS *fts, FTSENT *ent)
case FTS_ERR:
/* if (S_ISDIR (ent->fts_statp->st_mode) && FIXME */
- error (0, ent->fts_errno, _("%s"), quote (file));
+ error (0, ent->fts_errno, "%s", quote (file));
return false;
case FTS_DNR: