diff --git a/monitor/packet.c b/monitor/packet.c
index 20ae962..78ecfd7 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
print_field("Random number: 0x%16.16" PRIx64, le64_to_cpu(rand));
}
-static void print_encryption_diversifier(uint16_t ediv)
+static void print_encrypted_diversifier(uint16_t ediv)
{
- print_field("Encryption diversifier: 0x%4.4x", le16_to_cpu(ediv));
+ print_field("Encrypted diversifier: 0x%4.4x", le16_to_cpu(ediv));
}
static const struct {
print_handle(cmd->handle);
print_random_number(cmd->rand);
- print_encryption_diversifier(cmd->ediv);
+ print_encrypted_diversifier(cmd->ediv);
print_key("Long term key", cmd->ltk);
}
print_handle(evt->handle);
print_random_number(evt->rand);
- print_encryption_diversifier(evt->ediv);
+ print_encrypted_diversifier(evt->ediv);
}
struct subevent_data {