diff --git a/src/mgmt.c b/src/mgmt.c
index d2d5da3..8eba551 100644
--- a/src/mgmt.c
+++ b/src/mgmt.c
mgmt_revision = bt_get_le16(&rp->revision);
mgmt_version = rp->version;
- info("Bluetooth Management version %u, revision %u", mgmt_version,
- mgmt_revision);
+ info("Bluetooth management interface %u.%u initialized",
+ mgmt_version, mgmt_revision);
if (mgmt_version < 1) {
- error("Version 1 of mgmt needed (kernel has version %u)",
- mgmt_version);
+ error("Version 1.0 or later of management interface is needed");
abort();
}
mgmt_sock = dd;
- info("Bluetooth Management interface initialized");
-
return 0;
fail: