summaryrefslogtreecommitdiff
path: root/usr.bin/script/script.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2016-04-16 12:47:23 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2016-04-16 12:47:23 +0000
commit26e736b2c0e50a26d2d88d408dfdde3eb7406b2f (patch)
tree8eebd3194c92db208b36a94e1d0ee6bdf936771a /usr.bin/script/script.c
parent29808109eaebfee4b6a7a347b322fbd4cb402456 (diff)
Notes
Diffstat (limited to 'usr.bin/script/script.c')
-rw-r--r--usr.bin/script/script.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/usr.bin/script/script.c b/usr.bin/script/script.c
index 6ffb46ab99ff..01284632cc88 100644
--- a/usr.bin/script/script.c
+++ b/usr.bin/script/script.c
@@ -161,17 +161,14 @@ main(int argc, char *argv[])
asprintf(&fmfname, "%s.filemon", fname);
if (!fmfname)
err(1, "%s.filemon", fname);
- if ((fm_fd = open("/dev/filemon", O_RDWR)) == -1)
+ if ((fm_fd = open("/dev/filemon", O_RDWR | O_CLOEXEC)) == -1)
err(1, "open(\"/dev/filemon\", O_RDWR)");
- if ((fm_log = open(fmfname, O_WRONLY | O_CREAT | O_TRUNC,
+ if ((fm_log = open(fmfname,
+ O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC,
S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)) == -1)
err(1, "open(%s)", fmfname);
if (ioctl(fm_fd, FILEMON_SET_FD, &fm_log) < 0)
err(1, "Cannot set filemon log file descriptor");
-
- /* Set up these two fd's to close on exec. */
- (void)fcntl(fm_fd, F_SETFD, FD_CLOEXEC);
- (void)fcntl(fm_log, F_SETFD, FD_CLOEXEC);
}
if (pflg)