diff options
Diffstat (limited to 'wpa_supplicant/notify.c')
-rw-r--r-- | wpa_supplicant/notify.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/wpa_supplicant/notify.c b/wpa_supplicant/notify.c index e41d7c4..0ba1e14 100644 --- a/wpa_supplicant/notify.c +++ b/wpa_supplicant/notify.c @@ -794,10 +794,11 @@ void wpas_notify_certification(struct wpa_supplicant *wpa_s, int i; wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_EAP_PEER_CERT - "depth=%d subject='%s'%s%s%s", + "depth=%d subject='%s'%s%s%s%s", cert->depth, cert->subject, cert_hash ? " hash=" : "", cert_hash ? cert_hash : "", - cert->tod ? " tod=1" : ""); + cert->tod == 2 ? " tod=2" : "", + cert->tod == 1 ? " tod=1" : ""); if (cert->cert) { char *cert_hex; |