Your message dated Sun, 12 Oct 2025 09:19:37 +0000
with message-id <[email protected]>
and subject line Bug#1114091: fixed in djbdns 1:1.05-22.1
has caused the Debian Bug report #1114091,
regarding djbdns: FTBFS: generic-conf.c:46:19: error: passing argument 2 of 
'buffer_init' from incompatible pointer type [-Wincompatible-pointer-types]
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1114091: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1114091
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:djbdns
Version: 1:1.05-22
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, your package failed to build.

Below you will find how the build ends (probably the most relevant part,
but not necessarily). If required, the full build log is available here:

https://people.debian.org/~sanvila/build-logs/202509/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you could not reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:djbdns, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean --with runit
   dh_auto_clean
   dh_clean
 debian/rules binary
dh binary --with runit
   dh_update_autotools_config
   dh_autoreconf
   debian/rules override_dh_auto_configure
make[1]: Entering directory '/<<PKGBUILDDIR>>'
echo /usr | tee conf-home
/usr
printf -- '%s\n' 'x86_64-linux-gnu-gcc -Wdate-time -D_FORTIFY_SOURCE=2 -include 
/usr/include/errno.h -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection' | 
tee conf-cc
x86_64-linux-gnu-gcc -Wdate-time -D_FORTIFY_SOURCE=2 -include 
/usr/include/errno.h -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection
printf -- '%s\n' 'x86_64-linux-gnu-gcc -Wl,-z,relro -Wl,-z,now 
-specs=/usr/share/debhelper/dh_package_notes/debian-package-notes.specs' | tee 
conf-ld
x86_64-linux-gnu-gcc -Wl,-z,relro -Wl,-z,now 
-specs=/usr/share/debhelper/dh_package_notes/debian-package-notes.specs
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   dh_auto_build
        make -j2 "INSTALL=install --strip-program=true"
make[1]: Entering directory '/<<PKGBUILDDIR>>'
( cat warn-auto.sh; \
echo 'main="$1"; shift'; \
echo exec "`head -1 conf-ld`" \
'-o "$main" "$main".o ${1+"$@"}' \
) > load
( cat warn-auto.sh; \
echo exec "`head -1 conf-cc`" '-c ${1+"$@"}' \
) > compile
chmod 755 load
( cat warn-auto.sh; \
echo CC=\'`head -1 conf-cc`\'; \
echo LD=\'`head -1 conf-ld`\'; \
cat find-systype.sh; \
) | sh > systype
chmod 755 compile
cat warn-auto.sh choose.sh \
| sed s}HOME}"`head -1 conf-home`"}g \
> choose
chmod 755 choose
./compile generic-conf.c
generic-conf.c: In function ‘start’:
generic-conf.c:46:19: error: passing argument 2 of ‘buffer_init’ from 
incompatible pointer type [-Wincompatible-pointer-types]
   46 |   buffer_init(&ss,buffer_unixwrite,fd,buf,sizeof buf);
      |                   ^~~~~~~~~~~~~~~~
      |                   |
      |                   int (*)(int,  const char *, unsigned int)
In file included from generic-conf.c:5:
buffer.h:16:34: note: expected ‘int (*)(void)’ but argument is of type 
‘int (*)(int,  const char *, unsigned int)’
   16 | extern void buffer_init(buffer *,int (*)(),int,char *,unsigned int);
      |                                  ^~~~~~~~~
buffer.h:51:12: note: ‘buffer_unixwrite’ declared here
   51 | extern int buffer_unixwrite(int,const char *,unsigned int);
      |            ^~~~~~~~~~~~~~~~
./compile auto-str.c
make[1]: *** [Makefile:490: generic-conf.o] Error 1
make[1]: *** Waiting for unfinished jobs....
In file included from auto-str.c:2:
exit.h:4:13: warning: conflicting types for built-in function ‘_exit’; 
expected ‘void(int)’ [-Wbuiltin-declaration-mismatch]
    4 | extern void _exit();
      |             ^~~~~
In file included from auto-str.c:1:
buffer.h:12:61: error: initialization of ‘int (*)(void)’ from incompatible 
pointer type ‘int (*)(int,  const char *, unsigned int)’ 
[-Wincompatible-pointer-types]
   12 | #define BUFFER_INIT(op,fd,buf,len) { (buf), 0, (len), (fd), (op) }
      |                                                             ^
auto-str.c:5:12: note: in expansion of macro ‘BUFFER_INIT’
    5 | buffer b = BUFFER_INIT(buffer_unixwrite,1,bspace,sizeof bspace);
      |            ^~~~~~~~~~~
buffer.h:12:61: note: (near initialization for ‘b.op’)
   12 | #define BUFFER_INIT(op,fd,buf,len) { (buf), 0, (len), (fd), (op) }
      |                                                             ^
auto-str.c:5:12: note: in expansion of macro ‘BUFFER_INIT’
    5 | buffer b = BUFFER_INIT(buffer_unixwrite,1,bspace,sizeof bspace);
      |            ^~~~~~~~~~~
buffer.h:51:12: note: ‘buffer_unixwrite’ declared here
   51 | extern int buffer_unixwrite(int,const char *,unsigned int);
      |            ^~~~~~~~~~~~~~~~
auto-str.c:7:6: warning: conflicting types for built-in function ‘puts’; 
expected ‘int(const char *)’ [-Wbuiltin-declaration-mismatch]
    7 | void puts(const char *s)
      |      ^~~~
auto-str.c:3:1: note: ‘puts’ is declared in header ‘<stdio.h>’
    2 | #include "exit.h"
  +++ |+#include <stdio.h>
    3 | 
auto-str.c: In function ‘puts’:
auto-str.c:9:32: error: too many arguments to function ‘_exit’; expected 0, 
have 1
    9 |   if (buffer_puts(&b,s) == -1) _exit(111);
      |                                ^~~~~ ~~~
exit.h:4:13: note: declared here
    4 | extern void _exit();
      |             ^~~~~
auto-str.c: In function ‘main’:
auto-str.c:20:14: error: too many arguments to function ‘_exit’; expected 
0, have 1
   20 |   if (!name) _exit(100);
      |              ^~~~~ ~~~
exit.h:4:13: note: declared here
    4 | extern void _exit();
      |             ^~~~~
auto-str.c:22:15: error: too many arguments to function ‘_exit’; expected 
0, have 1
   22 |   if (!value) _exit(100);
      |               ^~~~~ ~~~
exit.h:4:13: note: declared here
    4 | extern void _exit();
      |             ^~~~~
auto-str.c:38:31: error: too many arguments to function ‘_exit’; expected 
0, have 1
   38 |   if (buffer_flush(&b) == -1) _exit(111);
      |                               ^~~~~ ~~~
exit.h:4:13: note: declared here
    4 | extern void _exit();
      |             ^~~~~
auto-str.c:39:3: error: too many arguments to function ‘_exit’; expected 0, 
have 1
   39 |   _exit(0);
      |   ^~~~~ ~
exit.h:4:13: note: declared here
    4 | extern void _exit();
      |             ^~~~~
make[1]: *** [Makefile:30: auto-str.o] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j2 "INSTALL=install --strip-program=true" returned 
exit code 2
make: *** [debian/rules:10: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

--- End Message ---
--- Begin Message ---
Source: djbdns
Source-Version: 1:1.05-22.1
Done: Adrian Bunk <[email protected]>

We believe that the bug you reported is fixed in the latest version of
djbdns, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Adrian Bunk <[email protected]> (supplier of updated djbdns package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Fri, 10 Oct 2025 20:46:39 +0300
Source: djbdns
Architecture: source
Version: 1:1.05-22.1
Distribution: unstable
Urgency: medium
Maintainer: Peter Pentchev <[email protected]>
Changed-By: Adrian Bunk <[email protected]>
Closes: 1114091
Changes:
 djbdns (1:1.05-22.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Build with -std=gnu17 to workaround FTBFS with GCC 15.
     (Closes: #1114091)
   * Increase the test timeouts to 1 hour, which might make the
     riscv64 autopkgtest non-flaky.
Checksums-Sha1:
 457af32e65b885823428c8f5b001eea506ebbd3e 2312 djbdns_1.05-22.1.dsc
 fb5f0b397803c79980396e29f6928d1ecb7ddced 65060 djbdns_1.05-22.1.debian.tar.xz
Checksums-Sha256:
 d187015c56d447a1393dd773e3d3dba32b4d147e50bbb96c6c3729a1c932960a 2312 
djbdns_1.05-22.1.dsc
 572c06a2b075a9d5abcf784196b79b3495e90af3c04b844a5777ea025a111375 65060 
djbdns_1.05-22.1.debian.tar.xz
Files:
 109601ca884fb3e9550046ea3d0b7022 2312 net optional djbdns_1.05-22.1.dsc
 f006320ac363083df2a2a6e9e34f0283 65060 net optional 
djbdns_1.05-22.1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEOvp1f6xuoR0v9F3wiNJCh6LYmLEFAmjpcb8ACgkQiNJCh6LY
mLEC8A/+PG/lvP3YpUhHAn5Qc0GUlvpLZ3SuvDop+uS32N/tyulLpo78S4xIVk0B
jY8T9k23dbJdzTufXiYtEI5Lik21F/+EJTKoRNpuWvzpdKHNoLT3odCZ/gyxR3NH
JIcXBZhxZeQILdXtydOMpXxbDxPoUw76EEjuGzA8vGZDOwMhLF4gnqEgyKyLvmCV
96WpD9hRa0vcGBJeatFxfGg8pj3HH2a0SX92elbO5Wy7h8U6gAUhXHzdmRYBfcAQ
41RRoKHpQZPtLEs6i2icp+F9EdrI8/LYmUE2tm+TxGMS+Yd1nFrZAU+OMF/Jzb3/
ZQODupihY/5VB/nga0iQK6WsEUzFVbl6zdUrRKUM4M8UxOLdLOhDH8GKKqJiYGF0
W+ohbS7iX4kWva21B2xwPepJSIrWeIwaw9zFD7yCLkaul8A0As4nJjDfUnNQigqO
21k8Heb1fcB/MOl8lfOsG+O2+WUiZXM94Fs5pwGCOuCO3ILNhxdsD6PaQwHOsLn3
SDEGmOR5dlDMhqxjVwiGIwkvq2D0jSO+zOeg5JshuTbPCBDpe6OOKGAMeWh1ZVVa
BiQWQ+38pniJ7GVUi2CW8NRWIh5dR286lhw6JiMPtTqBkWqPT9tj+A4uSnYVmJqh
dAtRmJ73xBSbd3on4SCj+02HjxF0a4yumUn5C4twewt5KN/42DM=
=B2NB
-----END PGP SIGNATURE-----

Attachment: pgpKA3WO9Eygr.pgp
Description: PGP signature


--- End Message ---

Reply via email to