From 52146665a5c5fcf3d860a64171f8c268a13b37da Mon Sep 17 00:00:00 2001 From: Maxim Konovalov Date: Tue, 20 Dec 2005 18:18:37 +0000 Subject: [PATCH] o Remove rev. 1.14 debug printf(3) leftovers. PR: bin/90389 Submitted by: Gavin Atkinson OK'ed by: phk --- sbin/routed/if.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/sbin/routed/if.c b/sbin/routed/if.c index 291eb191fc7f..f8038f6a4725 100644 --- a/sbin/routed/if.c +++ b/sbin/routed/if.c @@ -805,13 +805,8 @@ ifinit(void) if (ifs.int_if_flags & IFF_LOOPBACK) { ifs.int_state |= IS_NO_RIP | IS_NO_RDISC; - if (ifs.int_addr == htonl(INADDR_LOOPBACK)) { - printf("loop %x\n", ifs.int_addr); + if (ifs.int_addr == htonl(INADDR_LOOPBACK)) ifs.int_state |= IS_PASSIVE; - } else { - printf("alias %x\n", ifs.int_addr); - } - ifs.int_dstaddr = ifs.int_addr; ifs.int_mask = HOST_MASK; ifs.int_ripv1_mask = HOST_MASK;