diff options
author | Jouni Malinen <j@w1.fi> | 2014-01-04 05:16:32 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2014-01-05 20:33:18 (GMT) |
commit | 9595151f3fefffee83e3fbe3effb030df44a0052 (patch) | |
tree | 3d09f09fc55cba56abdc7ed5b8fec5343aa51a67 | |
parent | 6be79541ad9a5943a661e470ba89ec89734c7924 (diff) | |
download | hostap-9595151f3fefffee83e3fbe3effb030df44a0052.zip hostap-9595151f3fefffee83e3fbe3effb030df44a0052.tar.gz hostap-9595151f3fefffee83e3fbe3effb030df44a0052.tar.bz2 |
Remove duplicated RX ctrl_iface hexdump
The newer wpa_dbg() print includes the same information in a more
convenient form, so remove the duplicate RX ctrl_iface hexdump in the
cases where there is no key material in the control interface commands
(the possible-key-material case is still using wpa_hexdump_ascii_key).
Signed-hostap: Jouni Malinen <j@w1.fi>
-rw-r--r-- | wpa_supplicant/ctrl_iface.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index 03b5e17..c9e36b1 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -5360,8 +5360,6 @@ char * wpa_supplicant_ctrl_iface_process(struct wpa_supplicant *wpa_s, int level = MSG_DEBUG; if (os_strcmp(buf, "PING") == 0) level = MSG_EXCESSIVE; - wpa_hexdump_ascii(level, "RX ctrl_iface", - (const u8 *) buf, os_strlen(buf)); wpa_dbg(wpa_s, level, "Control interface command '%s'", buf); } |