Your message dated Tue, 19 Mar 2024 22:49:30 +0000
with message-id <e1rmigw-004xjh...@fasolo.debian.org>
and subject line Bug#1066269: fixed in autolog 0.42.1-1
has caused the Debian Bug report #1066269,
regarding autolog: FTBFS: autolog.c:613:9: error: implicit declaration of 
function ‘re_comp’; did you mean ‘regcomp’? 
[-Werror=implicit-function-declaration]
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 ow...@bugs.debian.org
immediately.)


-- 
1066269: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066269
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: autolog
Version: 0.42-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now -o autolog autolog.c
> autolog.c: In function ‘check_utmp’:
> autolog.c:320:38: warning: passing argument 1 of ‘ctime’ from incompatible 
> pointer type [-Wincompatible-pointer-types]
>   320 |                                ctime(&utmpp->ut_time));
>       |                                      ^
>       |                                      |
>       |                                      int32_t * {aka int *}
> In file included from autolog.c:64:
> /usr/include/time.h:183:35: note: expected ‘const time_t *’ {aka ‘const long 
> int *’} but argument is of type ‘int32_t *’ {aka ‘int *’}
>   183 | extern char *ctime (const time_t *__timer) __THROW;
>       |                     ~~~~~~~~~~~~~~^~~~~~~
> autolog.c:346:30: warning: passing argument 1 of ‘ctime’ from incompatible 
> pointer type [-Wincompatible-pointer-types]
>   346 |                        ctime(&utmpp->ut_time));
>       |                              ^
>       |                              |
>       |                              int32_t * {aka int *}
> /usr/include/time.h:183:35: note: expected ‘const time_t *’ {aka ‘const long 
> int *’} but argument is of type ‘int32_t *’ {aka ‘int *’}
>   183 | extern char *ctime (const time_t *__timer) __THROW;
>       |                     ~~~~~~~~~~~~~~^~~~~~~
> autolog.c: In function ‘pat_match’:
> autolog.c:613:9: error: implicit declaration of function ‘re_comp’; did you 
> mean ‘regcomp’? [-Werror=implicit-function-declaration]
>   613 |         re_comp(pattern);
>       |         ^~~~~~~
>       |         regcomp
> autolog.c:614:16: error: implicit declaration of function ‘re_exec’; did you 
> mean ‘regexec’? [-Werror=implicit-function-declaration]
>   614 |         return re_exec(strg);
>       |                ^~~~~~~
>       |                regexec
> autolog.c: In function ‘load_users’:
> autolog.c:441:9: warning: ignoring return value of ‘fscanf’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   441 |         fscanf(f, "%d", &userfill);
>       |         ^~~~~~~~~~~~~~~~~~~~~~~~~~
> autolog.c:451:17: warning: ignoring return value of ‘fscanf’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   451 |                 fscanf(f, " %s %d %s %d %d %d %d",
>       |                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>   452 |                        userlst[userpos].Name,
>       |                        ~~~~~~~~~~~~~~~~~~~~~~
>   453 |                        &userlst[userpos].UserID,
>       |                        ~~~~~~~~~~~~~~~~~~~~~~~~~
>   454 |                        userlst[userpos].Device,
>       |                        ~~~~~~~~~~~~~~~~~~~~~~~~
>   455 |                        &userlst[userpos].IdleTime,
>       |                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~
>   456 |                        &userlst[userpos].SessStrt,
>       |                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~
>   457 |                        &userlst[userpos].Ban_Ends,
>       |                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~
>   458 |                        &userlst[userpos].WarnEnds);
>       |                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~
> autolog.c: In function ‘get_PIDs’:
> autolog.c:839:9: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   839 |         fgets(iline, LINELEN, ps);               /* get header-line */
>       |         ^~~~~~~~~~~~~~~~~~~~~~~~~
> autolog.c: In function ‘mesg’:
> autolog.c:964:25: warning: ignoring return value of ‘system’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   964 |                         system (mbuf);
>       |                         ^~~~~~~~~~~~~
> autolog.c:987:25: warning: ignoring return value of ‘system’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   987 |                         system (mbuf);
>       |                         ^~~~~~~~~~~~~
> autolog.c:1012:25: warning: ignoring return value of ‘system’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>  1012 |                         system(mbuf);
>       |                         ^~~~~~~~~~~~
> autolog.c: In function ‘kill_lost_PIDs’:
> autolog.c:1167:9: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>  1167 |         fgets(iline, LINELEN, ps);               /* get header-line */
>       |         ^~~~~~~~~~~~~~~~~~~~~~~~~
> autolog.c: In function ‘check_utmp.isra’:
> autolog.c:325:77: warning: ‘%s’ directive output may be truncated writing up 
> to 63 bytes into a region of size 42 [-Wformat-truncation=]
>   325 |                 snprintf(tmp_str, 79, "Can't get status of user's 
> terminal: %s", dev);
>       |                                                                       
>       ^~   ~~~
> In file included from /usr/include/stdio.h:906,
>                  from autolog.c:58:
> In function ‘snprintf’,
>     inlined from ‘check_utmp.isra’ at autolog.c:325:3:
> /usr/include/x86_64-linux-gnu/bits/stdio2.h:54:10: note: 
> ‘__builtin___snprintf_chk’ output between 38 and 101 bytes into a destination 
> of size 79
>    54 |   return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
>       |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>    55 |                                    __glibc_objsize (__s), __fmt,
>       |                                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>    56 |                                    __va_arg_pack ());
>       |                                    ~~~~~~~~~~~~~~~~~
> autolog.c: In function ‘check_idle’:
> autolog.c:648:44: warning: ‘%s’ directive output may be truncated writing up 
> to 63 bytes into a region of size 59 [-Wformat-truncation=]
>   648 |         snprintf(ddev, sizeof(ddev), "/dev/%s", dev);     /* append 
> /dev/ to base name */
>       |                                            ^~   ~~~
> In function ‘snprintf’,
>     inlined from ‘check_idle’ at autolog.c:648:2:
> /usr/include/x86_64-linux-gnu/bits/stdio2.h:54:10: note: 
> ‘__builtin___snprintf_chk’ output between 6 and 69 bytes into a destination 
> of size 64
>    54 |   return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
>       |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>    55 |                                    __glibc_objsize (__s), __fmt,
>       |                                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>    56 |                                    __va_arg_pack ());
>       |                                    ~~~~~~~~~~~~~~~~~
> cc1: some warnings being treated as errors
> make[1]: *** [Makefile:15: autolog] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/autolog_0.42-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20240313&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.

--- End Message ---
--- Begin Message ---
Source: autolog
Source-Version: 0.42.1-1
Done: Marcos Fouces <mar...@debian.org>

We believe that the bug you reported is fixed in the latest version of
autolog, 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 1066...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Marcos Fouces <mar...@debian.org> (supplier of updated autolog 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 ftpmas...@ftp-master.debian.org)


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

Format: 1.8
Date: Tue, 19 Mar 2024 18:51:56 +0100
Source: autolog
Architecture: source
Version: 0.42.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Security Tools <team+pkg-secur...@tracker.debian.org>
Changed-By: Marcos Fouces <mar...@debian.org>
Closes: 1066269
Changes:
 autolog (0.42.1-1) unstable; urgency=medium
 .
   * New upstream version. (Closes: #1066269)
   * Remove obsolete lsb-base dependency.
   * Bump to Standards-Version 4.6.2 (no changes required).
   * Update copyright file.
Checksums-Sha1:
 aa2191c75cabb2e63e6e164651b958c58b965569 1912 autolog_0.42.1-1.dsc
 09fb7b7ffbd1aac30531e7e875a1ce76c9993d1a 29518 autolog_0.42.1.orig.tar.gz
 43627c1509bd372a1411e13309dbb54db9e999b4 8024 autolog_0.42.1-1.debian.tar.xz
 c79c75ac528a9451c15b6db5f71e1af4a0748a08 7284 autolog_0.42.1-1_source.buildinfo
Checksums-Sha256:
 8ec5f3d4da5823b3e79d4b46ecb9424639f33b4d6112b91b310862b64cad90b3 1912 
autolog_0.42.1-1.dsc
 e3b09c837ace0c77c2a3d60d4955dfb62125e8a45277b7cef54c877088435481 29518 
autolog_0.42.1.orig.tar.gz
 3dd7f893b84fac175e8ebe4315a6195983645cf8b93764ead8f9e3695acae59e 8024 
autolog_0.42.1-1.debian.tar.xz
 89b384911a0bfbfb75e9236d470885ecb439b5ef1847b9e9a0bf16292fa901ce 7284 
autolog_0.42.1-1_source.buildinfo
Files:
 b31ae365e9be02961efc473dc9748250 1912 admin optional autolog_0.42.1-1.dsc
 af14cdcd67c4d7407834562700512a58 29518 admin optional 
autolog_0.42.1.orig.tar.gz
 9ca735b268884a7ff631ef3ad29fe0ca 8024 admin optional 
autolog_0.42.1-1.debian.tar.xz
 81c3fcd1b76743d69f87ba7404cc27ee 7284 admin optional 
autolog_0.42.1-1_source.buildinfo

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

iQIzBAEBCgAdFiEEfLiv/VYDL+NaNH0uasy9D6O3RHwFAmX6EdkACgkQasy9D6O3
RHwn2g//aRXbkidLtPpaMJfODer74Eik87VnPUf+r2KextNYWlBinRMBy81sa2Ar
8C59FHMhL/rdQiP6T9J8NoGzg2yT/f00KuBhTOcSWLzYtIwli/aQgj1EpWbN5xYL
Sxzviu6jEHjoBnKHekCoFwuwkJoIoanYSdmzG6fd5EjFqvRSOIpJ4o7R+PpQpNH+
+UegH4Xo/vuBu8g5GzVSlEDiLGtTyMfyBbumUug4ykFxUgjqA9AIfpgZcRI7L291
p/PNbzOy/yQCAmtCQtFofunbfyGgJBZ4Db1lQiESe1GIw4L4VtMkbIE+0gdDSO1E
SztTumSjQ2AIrdsb0oi4jQLRAI8bAm+M3bhTgt53LJufKfYAgV4h0lX1eUmiGyaz
HzhckPhf66F+PyHwQFUXdOJvdOYlYA/uQ8cK/Tp4FTP+Ndc66VS/PN3pdrrSSehf
n+qvBZGXntnjMS5AwUoww62FcGcOTQyJRpOqzypnSA7zz8XK3vTCiZnBPWv4ZzB2
pQ0ixGF2yxviwsJZV1/npcdR7ok3IhFQynkGCs1KB8JRkQMjUl46kFng/9z4Aq5Y
JOeh7sahPPp202/JDeXTT50GiLl3fgIFbXzBDxprSGrB16Namx9XXH7JdAGqyyl0
Lg3L382KF981qjgzMSpC/7YRaQg23Gfdd7dQP2FB+7nKb7gjOU8=
=9Rgu
-----END PGP SIGNATURE-----

Attachment: pgpoUIKdVBh5p.pgp
Description: PGP signature


--- End Message ---

Reply via email to