PERFORCE change 148771 for review
Sam Leffler
sam at FreeBSD.org
Fri Aug 29 03:19:44 UTC 2008
http://perforce.freebsd.org/chv.cgi?CH=148771
Change 148771 by sam at sam_ebb on 2008/08/29 03:19:22
use bootverbose to turn on debugging
Affected files ...
.. //depot/projects/vap/tools/regression/net80211/ccmp/test_ccmp.c#6 edit
.. //depot/projects/vap/tools/regression/net80211/tkip/test_tkip.c#10 edit
.. //depot/projects/vap/tools/regression/net80211/wep/test_wep.c#5 edit
Differences ...
==== //depot/projects/vap/tools/regression/net80211/ccmp/test_ccmp.c#6 (text+ko) ====
@@ -722,7 +722,6 @@
*/
static int tests = -1;
-static int debug = 0;
static struct ieee80211vap *
fake_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ], int unit,
@@ -795,7 +794,7 @@
goto bad;
}
vap = vifp->if_softc;
- if (debug)
+ if (bootverbose)
vap->iv_debug = IEEE80211_MSG_CRYPTO;
pass = 0;
==== //depot/projects/vap/tools/regression/net80211/tkip/test_tkip.c#10 (text+ko) ====
@@ -355,7 +355,6 @@
* Module glue.
*/
-static int debug = 0;
static int tests = -1;
static struct ieee80211vap *
@@ -429,7 +428,7 @@
goto bad;
}
vap = vifp->if_softc;
- if (debug)
+ if (bootverbose)
vap->iv_debug = IEEE80211_MSG_CRYPTO;
pass = 0;
==== //depot/projects/vap/tools/regression/net80211/wep/test_wep.c#5 (text+ko) ====
@@ -316,7 +316,6 @@
*/
static int tests = -1;
-static int debug = 0;
static struct ieee80211vap *
fake_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ], int unit,
@@ -389,7 +388,7 @@
goto bad;
}
vap = vifp->if_softc;
- if (debug)
+ if (bootverbose)
vap->iv_debug = IEEE80211_MSG_CRYPTO;
pass = 0;
More information about the p4-projects
mailing list