Skip to content

Commit 2429d5e

Browse files
Merge pull request #6494 from donatieng/securitydb_fix_casing
[BLE] Fixed inconsistent casing issue for SecurityDb
2 parents eaa31dd + 8b66c4b commit 2429d5e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

features/FEATURE_BLE/ble/pal/MemorySecurityDB.h renamed to features/FEATURE_BLE/ble/pal/MemorySecurityDb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#ifndef PAL_MEMORY_SECURITY_DB_H_
1818
#define PAL_MEMORY_SECURITY_DB_H_
1919

20-
#include "SecurityDB.h"
20+
#include "SecurityDb.h"
2121

2222
namespace ble {
2323
namespace pal {

features/FEATURE_BLE/ble/pal/SecurityDb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ struct SecurityEntryIdentity_t {
8484
};
8585

8686
/**
87-
* SecurityDB holds the state for active connections and bonded devices.
87+
* SecurityDb holds the state for active connections and bonded devices.
8888
* Keys can be stored in NVM and are returned via callbacks.
89-
* SecurityDB is responsible for serialising any requests and keeping
89+
* SecurityDb is responsible for serialising any requests and keeping
9090
* the store in a consistent state.
9191
* Active connections state must be returned immediately.
9292
*/

features/FEATURE_BLE/targets/TARGET_CORDIO/CordioBLE.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include "CordioPalGenericAccessService.h"
3131
#include "ble/generic/GenericGap.h"
3232
#include "ble/generic/GenericSecurityManager.h"
33-
#include "ble/pal/MemorySecurityDB.h"
33+
#include "ble/pal/MemorySecurityDb.h"
3434
#include "ble/pal/SimpleEventQueue.h"
3535

3636
namespace ble {

0 commit comments

Comments
 (0)