From 545f090d8b412af3658d77325782aa9160477376 Mon Sep 17 00:00:00 2001 From: Joakim Andersson Date: Thu, 22 Aug 2019 12:49:13 +0200 Subject: [PATCH] Bluetooth: Shell: Add pairing failed and complete to OOB handling Add pairing failed and complete callback to OOB authentication handlers. Signed-off-by: Joakim Andersson --- subsys/bluetooth/shell/bt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subsys/bluetooth/shell/bt.c b/subsys/bluetooth/shell/bt.c index c6d0c669b07..3c0996ec155 100644 --- a/subsys/bluetooth/shell/bt.c +++ b/subsys/bluetooth/shell/bt.c @@ -1377,8 +1377,8 @@ static struct bt_conn_auth_cb auth_cb_oob = { .oob_data_request = auth_pairing_oob_data_request, .cancel = auth_cancel, .pairing_confirm = NULL, - .pairing_failed = NULL, - .pairing_complete = NULL, + .pairing_failed = auth_pairing_failed, + .pairing_complete = auth_pairing_complete, };