summaryrefslogtreecommitdiffstats
path: root/usr.bin/truss
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2013-02-08 16:10:16 +0000
committerobrien <obrien@FreeBSD.org>2013-02-08 16:10:16 +0000
commit3028e3f8aba938dfd0bf9fda987b8a72140b8027 (patch)
treeb2f038222ff8a70f687652441df00d2b564c8abe /usr.bin/truss
parent952a6d5a7cd3d3f9007acfa06805262fc04a105f (diff)
parent1d08d5f677c1dfa810e381073590adbae19cc69f (diff)
downloadFreeBSD-src-3028e3f8aba938dfd0bf9fda987b8a72140b8027.zip
FreeBSD-src-3028e3f8aba938dfd0bf9fda987b8a72140b8027.tar.gz
Sync with HEAD.
Diffstat (limited to 'usr.bin/truss')
-rw-r--r--usr.bin/truss/main.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/usr.bin/truss/main.c b/usr.bin/truss/main.c
index 02c6930..4e9f74b 100644
--- a/usr.bin/truss/main.c
+++ b/usr.bin/truss/main.c
@@ -234,15 +234,12 @@ main(int ac, char **av)
usage();
if (fname != NULL) { /* Use output file */
- if ((trussinfo->outfile = fopen(fname, "w")) == NULL)
- errx(1, "cannot open %s", fname);
/*
- * Set FD_CLOEXEC, so that the output file is not shared with
- * the traced process.
+ * Set close-on-exec ('e'), so that the output file is not
+ * shared with the traced process.
*/
- if (fcntl(fileno(trussinfo->outfile), F_SETFD, FD_CLOEXEC) ==
- -1)
- warn("fcntl()");
+ if ((trussinfo->outfile = fopen(fname, "we")) == NULL)
+ err(1, "cannot open %s", fname);
}
/*
OpenPOWER on IntegriCloud