From owner-p4-projects@FreeBSD.ORG Wed Nov 10 21:15:35 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id C80CC16A568; Wed, 10 Nov 2004 21:15:34 +0000 (GMT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2BD716A566 for ; Wed, 10 Nov 2004 21:15:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 957DD43D3F for ; Wed, 10 Nov 2004 21:15:34 +0000 (GMT) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id iAALFYwm049617 for ; Wed, 10 Nov 2004 21:15:34 GMT (envelope-from sam@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id iAALFYDM049614 for perforce@freebsd.org; Wed, 10 Nov 2004 21:15:34 GMT (envelope-from sam@freebsd.org) Date: Wed, 10 Nov 2004 21:15:34 GMT Message-Id: <200411102115.iAALFYDM049614@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to sam@freebsd.org using -f From: Sam Leffler To: Perforce Change Reviews Subject: PERFORCE change 64839 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Nov 2004 21:15:35 -0000 http://perforce.freebsd.org/chv.cgi?CH=64839 Change 64839 by sam@sam_ebb on 2004/11/10 21:14:51 remove inactivity timer stuff Affected files ... .. //depot/projects/wifi/sbin/ifconfig/ifieee80211.c#8 edit Differences ... ==== //depot/projects/wifi/sbin/ifconfig/ifieee80211.c#8 (text+ko) ==== @@ -1199,33 +1199,6 @@ spacer = ' '; } } - - if (verbose) { - if (spacer != '\t') - printf("\n"); - spacer = '\t'; - } - - ireq.i_type = IEEE80211_IOC_INACT; - if (ioctl(s, SIOCG80211, &ireq) != -1) { - printf("%cinact%s %u", spacer, - verbose ? "(run)" : "", ireq.i_val); - spacer = ' '; - } - - if (verbose) { - ireq.i_type = IEEE80211_IOC_INACT_AUTH; - if (ioctl(s, SIOCG80211, &ireq) != -1) { - printf("%cinact(auth) %u", spacer, ireq.i_val); - spacer = ' '; - } - - ireq.i_type = IEEE80211_IOC_INACT_INIT; - if (ioctl(s, SIOCG80211, &ireq) != -1) { - printf("%cinact(init) %u", spacer, ireq.i_val); - spacer = ' '; - } - } } else { ireq.i_type = IEEE80211_IOC_ROAMING; if (ioctl(s, SIOCG80211, &ireq) != -1) {