tags 646502 + patch tags 646502 + pending thanks Dear maintainer,
I've prepared an NMU for sipcalc (versioned as 1.1.4-2.1) and uploaded it. Please find attached the diff. Regards, Ana
diff -u sipcalc-1.1.4/debian/changelog sipcalc-1.1.4/debian/changelog --- sipcalc-1.1.4/debian/changelog +++ sipcalc-1.1.4/debian/changelog @@ -1,3 +1,10 @@ +sipcalc (1.1.4-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with flag -Werror=format-security. (Closes: #646502) + + -- Ana Beatriz Guerrero Lopez <a...@debian.org> Sat, 03 Dec 2011 23:32:54 +0100 + sipcalc (1.1.4-2) unstable; urgency=low * debian/control: only in patch2: unchanged: --- sipcalc-1.1.4.orig/debian/patches/fix_ftbfs.patch +++ sipcalc-1.1.4/debian/patches/fix_ftbfs.patch @@ -0,0 +1,11 @@ +--- a/src/sub-output.c ++++ b/src/sub-output.c +@@ -139,7 +139,7 @@ show_split_networks_v4 (struct if_info * + bzero ((char *) ifi_tmp.p_v4nmask, 16); + bzero ((char *) ifi_tmp.p_v6addr, 44); + snprintf (ifi_tmp.p_v4addr, 19, "%s", numtoquad (start)); +- snprintf (ifi_tmp.p_v4nmask, 16, numtoquad (splitmask)); ++ snprintf (ifi_tmp.p_v4nmask, 16, "%s", numtoquad (splitmask)); + } + start += diff; + if (end == 0xffffffff || end >= ifi->v4ad.n_broadcast)