From: Holger Schurig Date: Wed, 29 Oct 2008 08:43:50 +0000 (+0100) Subject: wireless: fix two bad print_ssid conversions X-Git-Tag: v2.6.29-rc1~581^2~742^2~41 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=2a941ecb5178cb8c94190f17a42f35a772cbc5c6;p=safe%2Fjmp%2Flinux-2.6 wireless: fix two bad print_ssid conversions This patch fixes two current compilation problems. They showed up with CONFIG_IEEE80211_DEBUG defined. Signed-off-by: Holger Schurig Signed-off-by: John W. Linville --- diff --git a/net/ieee80211/ieee80211_wx.c b/net/ieee80211/ieee80211_wx.c index 29eb416..7cc4e5e 100644 --- a/net/ieee80211/ieee80211_wx.c +++ b/net/ieee80211/ieee80211_wx.c @@ -399,6 +399,10 @@ int ieee80211_wx_set_encode(struct ieee80211_device *ieee, /* If a new key was provided, set it up */ if (erq->length > 0) { +#ifdef CONFIG_IEEE80211_DEBUG + DECLARE_SSID_BUF(ssid); +#endif + len = erq->length <= 5 ? 5 : 13; memcpy(sec.keys[key], keybuf, erq->length); if (len > erq->length)