hostapd: revert signature change in patch
authorLeon M. George <leon@georgemail.eu>
Wed, 11 Sep 2019 12:10:18 +0000 (14:10 +0200)
committerPetr Štetiar <ynezz@true.cz>
Thu, 19 Sep 2019 21:43:27 +0000 (23:43 +0200)
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>
package/network/services/hostapd/patches/410-limit_debug_messages.patch

index d182e8d98681fa0d2b8c3f6b7e3d1123b95d1f54..687589d746381bb4017b0eb063ae461e52cff6ac 100644 (file)
   * 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;