[gnome-network] [gnome-nettool] 01/01: [svn-buildpackage] Tagging gnome-nettool 2.30.0-3
- From: Jeremy Bicha <jbicha moszumanska debian org>
- To: dispatch tracker debian org
- Subject: [gnome-network] [gnome-nettool] 01/01: [svn-buildpackage] Tagging gnome-nettool 2.30.0-3
- Date: Sun, 17 Dec 2017 18:42:01 -0000
This is an automated email from the git hooks/post-receive script.
jbicha pushed a commit to tag debian/2.30.0-3
in repository gnome-nettool.
commit 9dc80738d230e68d598a2e6889ae7cf7f91a200d
Author: Josselin Mouette <joss debian org>
Date: Sat Nov 13 13:08:59 2010 +0000
[svn-buildpackage] Tagging gnome-nettool 2.30.0-3
---
debian/changelog | 11 +++++-
debian/patches/02_ping_icmp_req.patch | 71 +++++++++++++++++++++++++++++++++++
debian/patches/series | 1 +
3 files changed, 81 insertions(+), 2 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 4604c64..e61fb8a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,15 @@
-gnome-nettool (2.30.0-2) UNRELEASED; urgency=low
+gnome-nettool (2.30.0-3) unstable; urgency=low
+
+ * 02_ping_icmp_req.patch: new patch. Handle the output from
+ iputils-ping correctly. Closes: #602972.
+
+ -- Josselin Mouette <joss debian org> Sat, 13 Nov 2010 13:59:09 +0100
+
+gnome-nettool (2.30.0-2) unstable; urgency=low
* Drop the alternative dependency on traceroute. Closes: #458723.
- -- Josselin Mouette <joss debian org> Tue, 13 Jul 2010 13:49:01 +0200
+ -- Josselin Mouette <joss debian org> Sat, 06 Nov 2010 13:50:17 +0100
gnome-nettool (2.30.0-1) unstable; urgency=low
diff --git a/debian/patches/02_ping_icmp_req.patch b/debian/patches/02_ping_icmp_req.patch
new file mode 100644
index 0000000..edd4d1f
--- /dev/null
+++ b/debian/patches/02_ping_icmp_req.patch
@@ -0,0 +1,71 @@
+From 9af2e18755725dc47ae8eb2867e3f038c298bc09 Mon Sep 17 00:00:00 2001
+From: Josselin Mouette <joss debian org>
+Date: Sat, 13 Nov 2010 13:53:12 +0100
+Subject: [PATCH] [ping] Handle output with icmp_req
+
+iputils-ping displays icmp_req= instead of icmp_seq=. Handle the two
+outputs correctly.
+---
+ src/ping.c | 7 ++++---
+ src/ping.h | 8 ++++----
+ 2 files changed, 8 insertions(+), 7 deletions(-)
+
+diff --git a/src/ping.c b/src/ping.c
+index 2c973c3..74f3c19 100644
+--- a/src/ping.c
++++ b/src/ping.c
+@@ -405,7 +405,7 @@ ping_foreach_with_tree (Netinfo * netinfo, gchar * line, gint len,
+
+ if (len > 0) { /* there are data to show */
+ count = strip_line (line, &data, netinfo);
+- if ((count == 5) || (count == 6)) {
++ if ((count == 5) || (count == 7)) {
+
+ /* Creation of GtkTreeView */
+ gtk_tree_view_set_rules_hint (GTK_TREE_VIEW
+@@ -519,6 +519,7 @@ static gint
+ strip_line (gchar * line, ping_data * data, Netinfo * netinfo)
+ {
+ gint count;
++ gchar dummy_buf[3];
+
+ if (netinfo_get_ip_version (netinfo) == IPV4)
+ line = g_strdelimit (line, ":", ' ');
+@@ -530,9 +531,9 @@ strip_line (gchar * line, ping_data * data, Netinfo * netinfo)
+ &(data)->bytes, data->ip, &(data)->icmp_seq,
+ data->srtt, data->unit);
+ #endif
+-#ifdef PING_PARAMS_6
++#ifdef PING_PARAMS_7
+ count = sscanf (line, PING_FORMAT,
+- &(data)->bytes, data->ip, &(data)->icmp_seq,
++ &(data)->bytes, data->ip, dummy_buf, &(data)->icmp_seq,
+ &(data)->ttl, data->srtt, data->unit);
+ #endif
+ if (count != 5 && count != 6) {
+diff --git a/src/ping.h b/src/ping.h
+index 0d2e068..53dd5de 100644
+--- a/src/ping.h
++++ b/src/ping.h
+@@ -28,14 +28,14 @@
+ /* <path to program> ping -b [-c <count>] -n <host> */
+ # define PING_PROGRAM_FORMAT "%s ping -b%s-n %s"
+ # define PING_PROGRAM_FORMAT_6 "%s ping6%s-n %s"
+-# define PING_FORMAT "%d bytes from %s icmp_seq=%d ttl=%d time=%s %s"
+-# define PING_PARAMS_6
++# define PING_FORMAT "%d bytes from %s icmp_%3c=%d ttl=%d time=%s %s"
++# define PING_PARAMS_7
+ #elif defined(__OSF__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) ||
defined(__NetBSD__) || defined(__DragonFly__)
+ /* <path to program> ping [-c <count>] -n <host> */
+ # define PING_PROGRAM_FORMAT "%s ping%s-n %s"
+ # define PING_PROGRAM_FORMAT_6 "%s ping6%s-n %s"
+-# define PING_FORMAT "%d bytes from %s icmp_seq=%d ttl=%d time=%s %s"
+-# define PING_PARAMS_6
++# define PING_FORMAT "%d bytes from %s icmp_%3c=%d ttl=%d time=%s %s"
++# define PING_PARAMS_7
+ #elif defined(__sun__)
+ /* <path to program> ping -s -n <host> [<count>] */
+ # define PING_PROGRAM_FORMAT "%s ping -s -n %s 56%s"
+--
+1.7.2.3
+
diff --git a/debian/patches/series b/debian/patches/series
index dc4f188..b74a6fa 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
01_network-manager.patch
+02_ping_icmp_req.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gnome/gnome-nettool.git
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]