- 论坛徽章:
- 0
|
看了楼上给的连接,里面有一个PATCH
bogus character appended to ESSID: patch
Hi,
On a Fedora Core 6 box (WE-20) with wireless-tools both v28 and v29 I鈥檓
seeing a bogus character appended to ESSID on iwconfig output since
ipw3945-1.1.2.
The reason seems to be the patch in bug #1146, which I guess has a typo
that attached patch fixes.
~serta莽
--
diff -Nupr ipw3945/ipw3945.c ipw3945-new/ipw3945.c
--- ipw3945/ipw3945.c 2006-12-08 19:33:45.000000000 +0200
+++ ipw3945-new/ipw3945.c 2006-12-15 01:08:29.000000000 +0200
@@ -12210,7 +12210,7 @@ static int ipw_wx_get_essid(struct net_d
IPW_DEBUG_WX("Getting essid: '%s'\n",
escape_essid(priv->essid, priv->essid_len));
memcpy(extra, priv->essid, priv->essid_len);
- wrqu->essid.length = priv->essid_len + IW_ESSID_FIX;
+ wrqu->essid.length = priv->essid_len;
wrqu->essid.flags = 1; /* active */
} else {
IPW_DEBUG_WX("Getting essid: ANY\n");
看得不是很明白,是否针对这个问题的?是否要求我自己改原代码? |
|