ソースを参照

[802.11] Use correct name for sec80211_detect()

The workhorse function for detecting 802.11 security was still named
_sec80211_detect(), a holdover from the old style of weak function
handling, with the result that all networks would be identified as
"unknown".

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Joshua Oreman 14年前
コミット
0c593d95e5
1個のファイルの変更3行の追加3行の削除
  1. 3
    3
      src/net/80211/sec80211.c

+ 3
- 3
src/net/80211/sec80211.c ファイルの表示

@@ -402,9 +402,9 @@ int sec80211_detect_ie ( int is_rsn, u8 *start, u8 *end,
402 402
  * it. If it does not exist, any network with the PRIVACY bit set in
403 403
  * beacon->capab should be considered unknown.
404 404
  */
405
-int _sec80211_detect ( struct io_buffer *iob,
406
-		       enum net80211_security_proto *secprot,
407
-		       enum net80211_crypto_alg *crypt )
405
+int sec80211_detect ( struct io_buffer *iob,
406
+		      enum net80211_security_proto *secprot,
407
+		      enum net80211_crypto_alg *crypt )
408 408
 {
409 409
 	struct ieee80211_frame *hdr = iob->data;
410 410
 	struct ieee80211_beacon *beacon =

読み込み中…
キャンセル
保存