From d9e1d0df87968a14df0d1126f365d1fc185b0ea2 Mon Sep 17 00:00:00 2001 From: ecki Date: Sat, 24 Nov 2001 05:23:35 +0000 Subject: [PATCH] fixed debian bug#109370 (empty line if baseaddr < 0x100 in ifconfig). Patch by Jonathan Amery --- lib/interface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/interface.c b/lib/interface.c index 72fc45e2e..eee992bcd 100644 --- a/lib/interface.c +++ b/lib/interface.c @@ -7,7 +7,7 @@ 8/2000 Andi Kleen make the list operations a bit more efficient. People are crazy enough to use thousands of aliases now. - $Id: interface.c,v 1.19 2001/11/12 01:36:48 ecki Exp $ + $Id: interface.c,v 1.20 2001/11/24 05:23:35 ecki Exp $ */ #include "config.h" @@ -895,7 +895,7 @@ void ife_print_long(struct interface *ptr) } if ((ptr->map.irq || ptr->map.mem_start || ptr->map.dma || - ptr->map.base_addr)) { + ptr->map.base_addr >= 0x100)) { printf(" "); if (ptr->map.irq) printf(_("Interrupt:%d "), ptr->map.irq); -- 2.11.4.GIT