wpa_debug: Support wpa_hexdump_ascii() outputting into syslog
When syslog logging is used output from wpa_hexdump_ascii() was silently discarded. This patch enables wpa_hexdump_ascii() to print data to syslog but without ASCII decoding. Signed-off-by: Andrey Kartashev <andrey.kartashev@afconsult.com>
This commit is contained in:
parent
302bbad5ac
commit
e47c5227bd
1 changed files with 6 additions and 0 deletions
|
@ -422,6 +422,12 @@ static void _wpa_hexdump_ascii(int level, const char *title, const void *buf,
|
|||
#ifdef CONFIG_ANDROID_LOG
|
||||
_wpa_hexdump(level, title, buf, len, show);
|
||||
#else /* CONFIG_ANDROID_LOG */
|
||||
#ifdef CONFIG_DEBUG_SYSLOG
|
||||
if (wpa_debug_syslog) {
|
||||
_wpa_hexdump(level, title, buf, len, show);
|
||||
return;
|
||||
}
|
||||
#endif /* CONFIG_DEBUG_SYSLOG */
|
||||
wpa_debug_print_timestamp();
|
||||
#ifdef CONFIG_DEBUG_FILE
|
||||
if (out_file) {
|
||||
|
|
Loading…
Reference in a new issue