diff -Nru tcpspy-1.7d/debian/changelog tcpspy-1.7d/debian/changelog --- tcpspy-1.7d/debian/changelog 2014-11-05 16:54:44.000000000 +0000 +++ tcpspy-1.7d/debian/changelog 2015-05-06 13:35:24.000000000 +0000 @@ -1,3 +1,18 @@ +tcpspy (1.7d-12) unstable; urgency=medium + + * QA upload. + * Upload to unstable. + + -- Joao Eriberto Mota Filho Wed, 06 May 2015 10:35:06 -0300 + +tcpspy (1.7d-11) experimental; urgency=medium + + * QA upload. + * debian/copyright: updated the packaging copyright years. + * debian/patches/fix-gcc-warning: added to fix a GCC warning. + + -- Joao Eriberto Mota Filho Wed, 11 Feb 2015 10:47:11 -0200 + tcpspy (1.7d-10) unstable; urgency=medium * QA upload. diff -Nru tcpspy-1.7d/debian/copyright tcpspy-1.7d/debian/copyright --- tcpspy-1.7d/debian/copyright 2014-10-20 15:57:48.000000000 +0000 +++ tcpspy-1.7d/debian/copyright 2015-02-11 12:48:09.000000000 +0000 @@ -9,7 +9,7 @@ Files: debian/* Copyright: 2001-2010 Pablo Lorenzzoni 2008 Petter Reinholdtsen - 2014 Joao Eriberto Mota Filho + 2014-2015 Joao Eriberto Mota Filho License: BSD-3-clause License: BSD-3-clause diff -Nru tcpspy-1.7d/debian/patches/fix-gcc-warning tcpspy-1.7d/debian/patches/fix-gcc-warning --- tcpspy-1.7d/debian/patches/fix-gcc-warning 1970-01-01 00:00:00.000000000 +0000 +++ tcpspy-1.7d/debian/patches/fix-gcc-warning 2015-02-11 12:46:32.000000000 +0000 @@ -0,0 +1,19 @@ +Description: fix a GCC warning. +Author: Joao Eriberto Mota Filho +Last-Update: 2015-02-11 +Index: tcpspy-1.7d/tcpspy.c +=================================================================== +--- tcpspy-1.7d.orig/tcpspy.c ++++ tcpspy-1.7d/tcpspy.c +@@ -716,7 +716,10 @@ int main (int argc, char *argv[]) + close (nullfd); + + setpgid (0, 0); +- chdir ("/"); ++ /* [FIX] tcpspy.c:719:3: warning: ignoring return value of ‘chdir’, declared with attribute warn_unused_result [-Wunused-result] */ ++ if( chdir ("/") == -1) { ++ return; ++ } + umask (0); + } else + fprintf (stderr, "tcpspy 1.7d started (debug)\n"); diff -Nru tcpspy-1.7d/debian/patches/series tcpspy-1.7d/debian/patches/series --- tcpspy-1.7d/debian/patches/series 2014-11-05 17:00:09.000000000 +0000 +++ tcpspy-1.7d/debian/patches/series 2015-02-11 12:41:26.000000000 +0000 @@ -3,3 +3,4 @@ add_support_to_ipv6 add_security fix-FTBFS-Hurd +fix-gcc-warning