From 472f08ca8f92bfee4c17ef02e992c978b8b1fd8e Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Mon, 13 Dec 2004 04:26:36 +0000 Subject: [PATCH] cover up the landmine until there's a proper solution --- sys/net80211/ieee80211_freebsd.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/net80211/ieee80211_freebsd.c b/sys/net80211/ieee80211_freebsd.c index 3a2ee7b76fa..b591de10f16 100644 --- a/sys/net80211/ieee80211_freebsd.c +++ b/sys/net80211/ieee80211_freebsd.c @@ -300,6 +300,7 @@ ieee80211_notify_michael_failure(struct ieee80211com *ic, void ieee80211_load_module(const char *modname) { +#ifdef notyet struct thread *td = curthread; if (suser(td) == 0 && securelevel_gt(td->td_ucred, 0) == 0) { @@ -307,6 +308,9 @@ ieee80211_load_module(const char *modname) (void) linker_load_module(modname, NULL, NULL, NULL, NULL); mtx_unlock(&Giant); } +#else + printf("%s: load the %s module by hand for now.\n", __func__, modname); +#endif } /*