This is an automated email from the ASF dual-hosted git repository.
janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git
The following commit(s) were added to refs/heads/master by this push:
new 59237356 host/l2cap: fix typo in the macro's name
59237356 is described below
commit 5923735634d770ecb4811c315d83ef120b3589b4
Author: Wojciech Pietraszewski <[email protected]>
AuthorDate: Wed Jun 28 10:29:43 2023 +0200
host/l2cap: fix typo in the macro's name
Changed from 'BLE_L2CAP_ERR_RECONFIG_UNACCAPTED_PARAM' to
'BLE_L2CAP_ERR_RECONFIG_UNACCEPTED_PARAM'.
---
nimble/host/include/host/ble_l2cap.h | 2 +-
nimble/host/src/ble_l2cap_sig.c | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/nimble/host/include/host/ble_l2cap.h
b/nimble/host/include/host/ble_l2cap.h
index aef9682c..6edfa85d 100644
--- a/nimble/host/include/host/ble_l2cap.h
+++ b/nimble/host/include/host/ble_l2cap.h
@@ -80,7 +80,7 @@ struct ble_hs_conn;
#define BLE_L2CAP_ERR_RECONFIG_REDUCTION_MTU_NOT_ALLOWED 0x0001
#define BLE_L2CAP_ERR_RECONFIG_REDUCTION_MPS_NOT_ALLOWED 0x0002
#define BLE_L2CAP_ERR_RECONFIG_INVALID_DCID 0x0003
-#define BLE_L2CAP_ERR_RECONFIG_UNACCAPTED_PARAM 0x0004
+#define BLE_L2CAP_ERR_RECONFIG_UNACCEPTED_PARAM 0x0004
#define BLE_L2CAP_EVENT_COC_CONNECTED 0
#define BLE_L2CAP_EVENT_COC_DISCONNECTED 1
diff --git a/nimble/host/src/ble_l2cap_sig.c b/nimble/host/src/ble_l2cap_sig.c
index 05f5829f..42459179 100644
--- a/nimble/host/src/ble_l2cap_sig.c
+++ b/nimble/host/src/ble_l2cap_sig.c
@@ -795,14 +795,14 @@ ble_l2cap_sig_credit_base_reconfig_req_rx(uint16_t
conn_handle,
}
if (hdr->length <= sizeof(*req)) {
- rsp->result = htole16(BLE_L2CAP_ERR_RECONFIG_UNACCAPTED_PARAM);
+ rsp->result = htole16(BLE_L2CAP_ERR_RECONFIG_UNACCEPTED_PARAM);
goto failed;
}
req = (struct ble_l2cap_sig_credit_base_reconfig_req *)(*om)->om_data;
if ((req->mps < BLE_L2CAP_ECOC_MIN_MTU) || (req->mtu <
BLE_L2CAP_ECOC_MIN_MTU)) {
- rsp->result = htole16(BLE_L2CAP_ERR_RECONFIG_UNACCAPTED_PARAM);
+ rsp->result = htole16(BLE_L2CAP_ERR_RECONFIG_UNACCEPTED_PARAM);
goto failed;
}
@@ -811,7 +811,7 @@ ble_l2cap_sig_credit_base_reconfig_req_rx(uint16_t
conn_handle,
cid_cnt = (hdr->length - sizeof(*req)) / sizeof(uint16_t);
if (cid_cnt > BLE_L2CAP_MAX_COC_CONN_REQ) {
- rsp->result = htole16(BLE_L2CAP_ERR_RECONFIG_UNACCAPTED_PARAM);
+ rsp->result = htole16(BLE_L2CAP_ERR_RECONFIG_UNACCEPTED_PARAM);
goto failed;
}