diff options
author | 2003-10-19 05:43:35 +0000 | |
---|---|---|
committer | 2003-10-19 05:43:35 +0000 | |
commit | 05892fd686338d035fa1939f55c05a427e272b85 (patch) | |
tree | dc83ff24e44567bd40e09ec1c31a71d14edaa70a | |
parent | sync FreeBSD RCS id (diff) | |
download | wireguard-openbsd-05892fd686338d035fa1939f55c05a427e272b85.tar.xz wireguard-openbsd-05892fd686338d035fa1939f55c05a427e272b85.zip |
Remove commented out debug line committed by mistake.
-rw-r--r-- | sbin/ifconfig/ifconfig.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c index c41ee8d1991..9e35ddf3110 100644 --- a/sbin/ifconfig/ifconfig.c +++ b/sbin/ifconfig/ifconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifconfig.c,v 1.81 2003/10/17 21:04:57 mcbride Exp $ */ +/* $OpenBSD: ifconfig.c,v 1.82 2003/10/19 05:43:35 mcbride Exp $ */ /* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */ /* @@ -77,7 +77,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)ifconfig.c 8.2 (Berkeley) 2/16/94"; #else -static const char rcsid[] = "$OpenBSD: ifconfig.c,v 1.81 2003/10/17 21:04:57 mcbride Exp $"; +static const char rcsid[] = "$OpenBSD: ifconfig.c,v 1.82 2003/10/19 05:43:35 mcbride Exp $"; #endif #endif /* not lint */ @@ -606,8 +606,6 @@ printif(struct ifreq *ifrm, int ifaliases) namep = NULL; for (ifa = ifap; ifa; ifa = ifa->ifa_next) { -//printf("printif: %s\n", ifa->ifa_name); - if (ifrm && strncmp(ifrm->ifr_name, ifa->ifa_name, sizeof(ifrm->ifr_name))) continue; |