]> err.no Git - dpkg/commitdiff
Use setcloexec wrapper instead of calling fcntl directly.
authorAdam Heath <doogie@debian.org>
Fri, 24 May 2002 04:28:09 +0000 (04:28 +0000)
committerAdam Heath <doogie@debian.org>
Fri, 24 May 2002 04:28:09 +0000 (04:28 +0000)
ChangeLog
lib/lock.c

index c3c4d6ed3a5e6e25852144d64973d8c9d6b13777..b65e8fac23905d4d61712f9944cc3c6694c0edec 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu May 23 23:23:03 CDT 2002 Adam Heath <doogie@debian.org>
+
+  * lib/lock.c: Use setcloexec wrapper instead of calling fcntl directly.
+
 Thu May 23 15:21:09 CDT 2002 Adam Heath <doogie@debian.org>
 
   * TODO: Add items for --reconfigure and --call-maint-script.
index 0fcb566507f97276beeb9601d42a2243928835dc..6294216d8711e05762ba940f6a9addb6ccf35645 100644 (file)
@@ -78,6 +78,6 @@ void lockdatabase(const char *admindir) {
       ohshit(_("status database area is locked by another process"));
     ohshite(_("unable to lock dpkg status database"));
   }
-  fcntl(dblockfd, F_SETFD, FD_CLOEXEC);
+  setcloexec(dblockfd, dblockfile);
   push_cleanup(cu_unlockdb,~0, NULL,0, 0);
 }