tags 643420 + patch tags 643420 + pending thanks Dear maintainer,
I've prepared an NMU for libcsoap (versioned as 1.1.0-17.1) and uploaded it. Please find attached the diff. Regards, Ana
diff -Nru libcsoap-1.1.0/debian/changelog libcsoap-1.1.0/debian/changelog --- libcsoap-1.1.0/debian/changelog 2010-06-20 03:24:42.000000000 +0200 +++ libcsoap-1.1.0/debian/changelog 2011-12-04 00:11:49.000000000 +0100 @@ -1,3 +1,10 @@ +libcsoap (1.1.0-17.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with flag -Werror=format-security. (Closes: #643420) + + -- Ana Beatriz Guerrero Lopez <a...@debian.org> Sun, 04 Dec 2011 00:08:29 +0100 + libcsoap (1.1.0-17) unstable; urgency=low * Merge NMU with my own fixes and take over package maintenance. diff -Nru libcsoap-1.1.0/debian/patches/fix_ftbfs.diff libcsoap-1.1.0/debian/patches/fix_ftbfs.diff --- libcsoap-1.1.0/debian/patches/fix_ftbfs.diff 1970-01-01 01:00:00.000000000 +0100 +++ libcsoap-1.1.0/debian/patches/fix_ftbfs.diff 2011-12-04 00:08:06.000000000 +0100 @@ -0,0 +1,20 @@ +--- a/nanohttp/nanohttp-logging.c ++++ b/nanohttp/nanohttp-logging.c +@@ -134,7 +134,7 @@ _log_write(log_level_t level, const char + vsprintf(buffer2, buffer, ap); + if (!log_background) + { +- printf(buffer2); ++ printf("%s", buffer2); + fflush(stdout); + } + +@@ -145,7 +145,7 @@ _log_write(log_level_t level, const char + f = fopen(hlog_get_file(), "w"); + if (f) + { +- fprintf(f, buffer2); ++ fprintf(f, "%s", buffer2); + fflush(f); + fclose(f); + } diff -Nru libcsoap-1.1.0/debian/patches/series libcsoap-1.1.0/debian/patches/series --- libcsoap-1.1.0/debian/patches/series 2010-06-20 03:12:46.000000000 +0200 +++ libcsoap-1.1.0/debian/patches/series 2011-12-04 00:05:23.000000000 +0100 @@ -11,3 +11,4 @@ strerror.diff bigger-reads-fix.diff socket-closed.diff +fix_ftbfs.diff