svn commit: r241227 - stable/9/usr.bin/find
Jilles Tjoelker
jilles at FreeBSD.org
Fri Oct 5 15:36:31 UTC 2012
Author: jilles
Date: Fri Oct 5 15:36:30 2012
New Revision: 241227
URL: http://svn.freebsd.org/changeset/base/241227
Log:
MFC r240973: find: Do not pass fd to save current directory to child
processes.
This removes one of the two wrongly passed file descriptors. The other one
appears to be from fts(3).
Modified:
stable/9/usr.bin/find/main.c
Directory Properties:
stable/9/usr.bin/find/ (props changed)
Modified: stable/9/usr.bin/find/main.c
==============================================================================
--- stable/9/usr.bin/find/main.c Fri Oct 5 14:43:49 2012 (r241226)
+++ stable/9/usr.bin/find/main.c Fri Oct 5 15:36:30 2012 (r241227)
@@ -150,7 +150,7 @@ main(int argc, char *argv[])
usage();
*p = NULL;
- if ((dotfd = open(".", O_RDONLY, 0)) < 0)
+ if ((dotfd = open(".", O_RDONLY | O_CLOEXEC, 0)) < 0)
err(1, ".");
exit(find_execute(find_formplan(argv), start));
More information about the svn-src-stable-9
mailing list