diff options
author | John W. Linville <linville@tuxdriver.com> | 2008-09-30 20:59:05 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-10-31 19:00:50 -0400 |
commit | 9387b7caf3049168fc97a8a9111af8fe2143af18 (patch) | |
tree | 6a19e5477d6a6badf19788536a9d3e1913ae48e1 /include/net/lib80211.h | |
parent | 2819f8ad6da1e24b5dd94a221978e61f2a9c972a (diff) |
wireless: use individual buffers for printing ssid values
Also change escape_ssid to print_ssid to match print_mac semantics.
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/lib80211.h')
-rw-r--r-- | include/net/lib80211.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/net/lib80211.h b/include/net/lib80211.h index ce49a30033b6..906d96f1b264 100644 --- a/include/net/lib80211.h +++ b/include/net/lib80211.h | |||
@@ -8,8 +8,9 @@ | |||
8 | #ifndef LIB80211_H | 8 | #ifndef LIB80211_H |
9 | #define LIB80211_H | 9 | #define LIB80211_H |
10 | 10 | ||
11 | /* escape_ssid() is intended to be used in debug (and possibly error) | 11 | /* print_ssid() is intended to be used in debug (and possibly error) |
12 | * messages. It should never be used for passing ssid to user space. */ | 12 | * messages. It should never be used for passing ssid to user space. */ |
13 | const char *escape_ssid(const char *ssid, u8 ssid_len); | 13 | const char *print_ssid(char *buf, const char *ssid, u8 ssid_len); |
14 | #define DECLARE_SSID_BUF(var) char var[32 * 4 + 1] __maybe_unused | ||
14 | 15 | ||
15 | #endif /* LIB80211_H */ | 16 | #endif /* LIB80211_H */ |