Control: tags 679198 + pending
thanks

Dear maintainers,

I've prepared an NMU for bash (versioned as 4.2-5.1) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.
diff -u bash-4.2/debian/changelog bash-4.2/debian/changelog
--- bash-4.2/debian/changelog
+++ bash-4.2/debian/changelog
@@ -1,3 +1,10 @@
+bash (4.2-5.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/bash.preinst-lib.c: typo in fcntl argument (Closes: #679198).
+
+ -- Nicolas Boulenguez <nico...@debian.org>  Tue, 11 Dec 2012 22:02:44 +0100
+
 bash (4.2-5) unstable; urgency=low
 
   * Apply upstream patch 037, fix for
diff -u bash-4.2/debian/bash.preinst-lib.c bash-4.2/debian/bash.preinst-lib.c
--- bash-4.2/debian/bash.preinst-lib.c
+++ bash-4.2/debian/bash.preinst-lib.c
@@ -60,8 +60,8 @@
 
 void set_cloexec(int fd)
 {
-	int flags = fcntl(fd, F_GETFL);
-	if (flags < 0 || fcntl(fd, F_SETFL, flags | FD_CLOEXEC))
+	int flags = fcntl(fd, F_GETFD);
+	if (flags < 0 || fcntl(fd, F_SETFD, flags | FD_CLOEXEC))
 		die_errno("cannot set close-on-exec flag");
 }
 

Reply via email to