summaryrefslogtreecommitdiffstats
path: root/text-utils/pg.c
diff options
context:
space:
mode:
authorKarel Zak2018-02-01 15:40:43 +0100
committerKarel Zak2018-02-01 15:40:43 +0100
commit62fa0883be6b2a51f8e69275c4cb31557e84b79f (patch)
treec8026ea7c0817801ac924bc7fd166e112958c5f6 /text-utils/pg.c
parentlib/exec_shell: (and pager) use errexec() (diff)
downloadkernel-qcow2-util-linux-62fa0883be6b2a51f8e69275c4cb31557e84b79f.tar.gz
kernel-qcow2-util-linux-62fa0883be6b2a51f8e69275c4cb31557e84b79f.tar.xz
kernel-qcow2-util-linux-62fa0883be6b2a51f8e69275c4cb31557e84b79f.zip
text-utils: use errexec()
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'text-utils/pg.c')
-rw-r--r--text-utils/pg.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/text-utils/pg.c b/text-utils/pg.c
index ed9eb415a..f441c04f0 100644
--- a/text-utils/pg.c
+++ b/text-utils/pg.c
@@ -1380,9 +1380,8 @@ static void pgfile(FILE *f, const char *name)
my_sigset(SIGTERM, oldterm);
execl(sh, sh, "-c",
cmd.cmdline + 1, NULL);
- warn(_("failed to execute %s"), sh);
- _exit(0177);
- /* NOTREACHED */
+ errexec(sh);
+ break;
}
case -1:
mesg(_("fork() failed, "