summaryrefslogtreecommitdiff
path: root/src/nohup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nohup.c')
-rw-r--r--src/nohup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nohup.c b/src/nohup.c
index 3ff22eac8..3364e9191 100644
--- a/src/nohup.c
+++ b/src/nohup.c
@@ -162,8 +162,8 @@ main (int argc, char **argv)
umask (umask_value);
error (0, 0,
_(ignoring_input
- ? "ignoring input and appending output to %s"
- : "appending output to %s"),
+ ? N_("ignoring input and appending output to %s")
+ : N_("appending output to %s")),
quote (file));
free (in_home);
}
@@ -185,8 +185,8 @@ main (int argc, char **argv)
if (!redirecting_stdout)
error (0, 0,
_(ignoring_input
- ? "ignoring input and redirecting stderr to stdout"
- : "redirecting stderr to stdout"));
+ ? N_("ignoring input and redirecting stderr to stdout")
+ : N_("redirecting stderr to stdout")));
if (dup2 (out_fd, STDERR_FILENO) < 0)
error (NOHUP_FAILURE, errno, _("failed to redirect standard error"));