[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] GNU Inetutils branch, master, updated. inetutils-1_9_4-103-g2117c
From: |
Alfred M. Szmidt |
Subject: |
[SCM] GNU Inetutils branch, master, updated. inetutils-1_9_4-103-g2117c31 |
Date: |
Sat, 4 Apr 2020 17:32:05 -0400 (EDT) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Inetutils ".
The branch, master has been updated
via 2117c3140a5c9dfe9e959961e1ae4ad89bf76294 (commit)
from 23e67af2ff21b2676bdc7636144006abd88a1da2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=2117c3140a5c9dfe9e959961e1ae4ad89bf76294
commit 2117c3140a5c9dfe9e959961e1ae4ad89bf76294
Author: Alfred M. Szmidt <address@hidden>
Date: Sat Apr 4 23:27:35 2020 +0200
ping/ping6.c (print_packet_too_big): Use %u when printing MTU.
diff --git a/ChangeLog b/ChangeLog
index 8183e16..d817c09 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2020-04-04 Alfred M. Szmidt <address@hidden>
+
+ * ping/ping6.c (print_packet_too_big): Use %u when printing MTU.
+
2020-02-29 Tim Rühsen <address@hidden>
uucpd: Fix buffer overflows.
diff --git a/ping/ping6.c b/ping/ping6.c
index 5de44c0..995d71d 100644
--- a/ping/ping6.c
+++ b/ping/ping6.c
@@ -655,7 +655,7 @@ print_dst_unreach (struct icmp6_hdr *icmp6)
static void
print_packet_too_big (struct icmp6_hdr *icmp6)
{
- printf ("Packet too big, mtu=%d\n", icmp6->icmp6_mtu);
+ printf ("Packet too big, mtu=%u\n", icmp6->icmp6_mtu);
}
static struct icmp_code_descr icmp_time_exceeded_desc[] = {
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
ping/ping6.c | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
hooks/post-receive
--
GNU Inetutils
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] GNU Inetutils branch, master, updated. inetutils-1_9_4-103-g2117c31,
Alfred M. Szmidt <=