From 4b42f9409144423996b0240fbc49654a15788112 Mon Sep 17 00:00:00 2001 From: Ben Kohler Date: Thu, 7 Feb 2019 11:49:59 -0600 Subject: net-analyzer/iftop: revbump for MAC formatting patch Closes: https://bugs.gentoo.org/661890 Package-Manager: Portage-2.3.59, Repoman-2.3.12 Signed-off-by: Ben Kohler --- .../files/iftop-1.0_pre4-fix-MAC-formatting.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 net-analyzer/iftop/files/iftop-1.0_pre4-fix-MAC-formatting.patch (limited to 'net-analyzer/iftop/files') diff --git a/net-analyzer/iftop/files/iftop-1.0_pre4-fix-MAC-formatting.patch b/net-analyzer/iftop/files/iftop-1.0_pre4-fix-MAC-formatting.patch new file mode 100644 index 000000000000..d68a8095dce7 --- /dev/null +++ b/net-analyzer/iftop/files/iftop-1.0_pre4-fix-MAC-formatting.patch @@ -0,0 +1,22 @@ +From: Xiaoguang Sun +Date: Tue, 11 Mar 2014 13:18:46 +0100 +Subject: MAC address format + +Forwarded: http://lists.beasts.org/pipermail/iftop-users/2014-March/000413.html +--- + iftop.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/iftop.c b/iftop.c +index a090dcf..883782e 100644 +--- a/iftop.c ++++ b/iftop.c +@@ -713,7 +713,7 @@ void packet_init() { + if(have_hw_addr) { + fprintf(stderr, "MAC address is:"); + for (i = 0; i < 6; ++i) +- fprintf(stderr, "%c%02x", i ? ':' : ' ', (unsigned int)if_hw_addr[i]); ++ fprintf(stderr, "%c%02x", i ? ':' : ' ', (unsigned char)if_hw_addr[i]); + fprintf(stderr, "\n"); + } + -- cgit v1.2.3-65-gdbad