diff -Nru health-check-0.03.08/debian/changelog health-check-0.03.09/debian/changelog --- health-check-0.03.08/debian/changelog 2020-07-28 16:44:44.000000000 +0000 +++ health-check-0.03.09/debian/changelog 2020-08-03 14:33:11.000000000 +0000 @@ -1,8 +1,9 @@ -health-check (0.03.08-1build1) groovy; urgency=medium +health-check (0.03.09-1) unstable; urgency=medium - * No change rebuild against new json-c ABI. + * Makefile: bump version + * net: don't throw warning messages when /proc file can't be opened - -- Dimitri John Ledkov Tue, 28 Jul 2020 17:44:44 +0100 + -- Colin King Mon, 3 Aug 2020 15:33:11 +0100 health-check (0.03.08-1) unstable; urgency=medium diff -Nru health-check-0.03.08/debian/control health-check-0.03.09/debian/control --- health-check-0.03.08/debian/control 2020-07-28 16:44:44.000000000 +0000 +++ health-check-0.03.09/debian/control 2020-08-03 14:33:11.000000000 +0000 @@ -2,8 +2,7 @@ Rules-Requires-Root: no Section: admin Priority: optional -Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: Colin King +Maintainer: Colin King Standards-Version: 4.1.2 Build-Depends: debhelper (>= 13), debhelper-compat (=13), diff -Nru health-check-0.03.08/Makefile health-check-0.03.09/Makefile --- health-check-0.03.08/Makefile 2020-07-04 10:27:00.000000000 +0000 +++ health-check-0.03.09/Makefile 2020-08-03 14:36:05.000000000 +0000 @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # -VERSION=0.03.08 +VERSION=0.03.09 # # Codename "Where have all my cycles gone?" # diff -Nru health-check-0.03.08/net.c health-check-0.03.09/net.c --- health-check-0.03.08/net.c 2020-07-04 10:27:00.000000000 +0000 +++ health-check-0.03.09/net.c 2020-08-03 14:36:05.000000000 +0000 @@ -674,10 +674,8 @@ return -1; } - if ((fp = fopen(procfile, "r")) == NULL) { - fprintf(stderr, "Cannot open %s.\n", procfile); + if ((fp = fopen(procfile, "r")) == NULL) return -1; - } for (i = 0; fgets(buf, sizeof(buf), fp) != NULL; i++) { net_addr_info_t new_addr;