Control: tags 967987 + pending

Dear maintainer,

I've prepared an NMU for fuzz (versioned as 0.6-19.1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.
diff -Nru fuzz-0.6/debian/changelog fuzz-0.6/debian/changelog
--- fuzz-0.6/debian/changelog	2020-09-28 09:32:35.000000000 -0300
+++ fuzz-0.6/debian/changelog	2022-11-01 19:09:03.000000000 -0300
@@ -1,3 +1,12 @@
+fuzz (0.6-19.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * debian/patches/30-glibc-2.32.patch: Fix FTBFS against glibc 2.32 by using
+    strerror() instead of sys_errlist. Thanks to Logan Rosen <lo...@ubuntu.com>.
+    (Closes: #967987).
+
+ -- Marcos Talau <ta...@debian.org>  Tue, 01 Nov 2022 19:09:03 -0300
+
 fuzz (0.6-19) unstable; urgency=medium
 
   * debian/control:
diff -Nru fuzz-0.6/debian/patches/30-glibc-2.32.patch fuzz-0.6/debian/patches/30-glibc-2.32.patch
--- fuzz-0.6/debian/patches/30-glibc-2.32.patch	1969-12-31 21:00:00.000000000 -0300
+++ fuzz-0.6/debian/patches/30-glibc-2.32.patch	2022-11-01 19:09:03.000000000 -0300
@@ -0,0 +1,19 @@
+Description: Fix FTBFS against glibc 2.32
+Author: Logan Rosen <lo...@ubuntu.com>
+Bug-Debian: https://bugs.debian.org/967987
+Forwarded: https://sourceforge.net/p/fuzz/bugs/6
+Last-Update: 2022-11-01
+
+Index: fuzz-0.6/fuzz.c
+===================================================================
+--- fuzz-0.6.orig/fuzz.c
++++ fuzz-0.6/fuzz.c
+@@ -814,7 +814,7 @@ void do_child(int *progpipe, char **argv
+ 
+   execv(progname,arguments);
+   write(cpy_stderr,"Exec failed.\n",strlen("Exec failed.\n"));
+-  write(cpy_stderr,sys_errlist[errno],strlen(sys_errlist[errno]));
++  write(cpy_stderr,strerror(errno),strlen(strerror(errno)));
+   exit(CANT_FORK_EXIT);
+ }
+ 
diff -Nru fuzz-0.6/debian/patches/series fuzz-0.6/debian/patches/series
--- fuzz-0.6/debian/patches/series	2016-10-19 04:16:45.000000000 -0200
+++ fuzz-0.6/debian/patches/series	2022-11-01 19:09:03.000000000 -0300
@@ -1,3 +1,4 @@
 10-fuzz.1-manpage-fixes.patch
 10-fuzz.1-manpage-fixes=11-newlines.patch
 20-fuzz.c--option-chroot.patch
+30-glibc-2.32.patch

Reply via email to