diff options
author | Leon M. George <leon@georgemail.eu> | 2019-09-11 14:10:18 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-11-14 20:59:58 +0100 |
commit | 0fcf02d0a5903ef506f48b41bfbc3eac970dcfe3 (patch) | |
tree | fa902c555784ed1ce3072b4a1c78e818a10484f3 /package/network/services/hostapd/patches | |
parent | 047329273be708585feef25ae738084fea2f9e8e (diff) | |
download | upstream-0fcf02d0a5903ef506f48b41bfbc3eac970dcfe3.tar.gz upstream-0fcf02d0a5903ef506f48b41bfbc3eac970dcfe3.tar.bz2 upstream-0fcf02d0a5903ef506f48b41bfbc3eac970dcfe3.zip |
hostapd: revert signature change in patch
The original wpa_hexdump uses a 'void *' for the payload. With patch
410-limit_debug_messages, the signature changes and compiler warnings
occur at various places. One such warning is:
wpa_debug.h:106:20: note: expected 'const u8 * {aka const unsigned char *}' but argument is of type 'struct wpa_eapol_key *'
Signed-off-by: Leon M. George <leon@georgemail.eu>
[commit message facelift]
Signed-off-by: Petr Štetiar <ynezz@true.cz>
(cherry picked from commit a123df275846b1b83aaf3d7488a1544f7c0e09aa)
Diffstat (limited to 'package/network/services/hostapd/patches')
-rw-r--r-- | package/network/services/hostapd/patches/410-limit_debug_messages.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/hostapd/patches/410-limit_debug_messages.patch b/package/network/services/hostapd/patches/410-limit_debug_messages.patch index d182e8d986..687589d746 100644 --- a/package/network/services/hostapd/patches/410-limit_debug_messages.patch +++ b/package/network/services/hostapd/patches/410-limit_debug_messages.patch @@ -124,7 +124,7 @@ * configuration. The contents of buf is printed out has hex dump. */ -void wpa_hexdump(int level, const char *title, const void *buf, size_t len); -+static inline void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len) ++static inline void wpa_hexdump(int level, const char *title, const void *buf, size_t len) +{ + if (level < CONFIG_MSG_MIN_PRIORITY) + return; |