Control: tags 1097311 + patch Control: tags 1097311 + pending Dear maintainer,
I've prepared an NMU for logtool (versioned as 1.2.8-14.1) and uploaded it to DELAYED/2. Please feel free to tell me if I should cancel it. cu Adrian
diffstat for logtool_1.2.8-14 logtool_1.2.8-14.1 debian/changelog | 7 +++++++ src/logtool.h | 6 +++--- src/mods.h | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff -u logtool-1.2.8/debian/changelog logtool-1.2.8/debian/changelog --- logtool-1.2.8/debian/changelog +++ logtool-1.2.8/debian/changelog @@ -1,3 +1,10 @@ +logtool (1.2.8-14.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix FTBFS with GCC 15. (Closes: #1097311) + + -- Adrian Bunk <[email protected]> Fri, 03 Oct 2025 23:24:51 +0300 + logtool (1.2.8-14) unstable; urgency=medium * Make requirement for root when building the package explicit. Patch by diff -u logtool-1.2.8/src/logtool.h logtool-1.2.8/src/logtool.h --- logtool-1.2.8/src/logtool.h +++ logtool-1.2.8/src/logtool.h @@ -28,10 +28,10 @@ #include "config.h" -void lt_setup(); +void lt_setup(int argc, char **argv); int lt_read_config(); void lt_set_config(); -void lt_set_config_err(); +void lt_set_config_err(char *option, char *val); void lt_run(); int lt_loop(); void lt_cleanup(); @@ -52,7 +52,7 @@ /* utility functions */ void lt_sh_usage(); -void lt_getopts(); +void lt_getopts(int argc, char **argv); int lt_putenv(char *line); /* From the regex.c file (regular expression stuff's) */ diff -u logtool-1.2.8/src/mods.h logtool-1.2.8/src/mods.h --- logtool-1.2.8/src/mods.h +++ logtool-1.2.8/src/mods.h @@ -38,7 +38,7 @@ /* a function to handle some of the repetitive work for all sub-modules */ short int mod_premsg_setup(); -short int mod_varcheck(); +short int mod_varcheck(char *var); /* a declaration for each sub-module type */ short int ltm_unknown();

