summaryrefslogtreecommitdiffstats
path: root/mgmtd
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2024-08-14 22:53:09 +0200
committerDonald Sharp <sharpd@nvidia.com>2024-08-15 15:19:37 +0200
commitbaa0a1df5b51160e9b6d4caebcdd2c72ecbbadc5 (patch)
tree6bbaccb8dd79ebbebe8d26484bbc1e3a5fda44b3 /mgmtd
parentMerge pull request #16585 from pguibert6WIND/prd_pretty_mt_fix (diff)
downloadfrr-baa0a1df5b51160e9b6d4caebcdd2c72ecbbadc5.tar.xz
frr-baa0a1df5b51160e9b6d4caebcdd2c72ecbbadc5.zip
*: Fix spelling errors found
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'mgmtd')
-rw-r--r--mgmtd/mgmt.c4
-rw-r--r--mgmtd/mgmt_be_adapter.c2
-rw-r--r--mgmtd/mgmt_txn.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/mgmtd/mgmt.c b/mgmtd/mgmt.c
index 8d4164306..fe0357e7e 100644
--- a/mgmtd/mgmt.c
+++ b/mgmtd/mgmt.c
@@ -15,9 +15,9 @@
#include "mgmtd/mgmt_history.h"
#include "mgmtd/mgmt_memory.h"
-struct debug mgmt_debug_be = {.desc = "Management backend adapater"};
+struct debug mgmt_debug_be = { .desc = "Management backend adapter" };
struct debug mgmt_debug_ds = {.desc = "Management datastore"};
-struct debug mgmt_debug_fe = {.desc = "Management frontend adapater"};
+struct debug mgmt_debug_fe = { .desc = "Management frontend adapter" };
struct debug mgmt_debug_txn = {.desc = "Management transaction"};
/* MGMTD process wide configuration. */
diff --git a/mgmtd/mgmt_be_adapter.c b/mgmtd/mgmt_be_adapter.c
index c7f4fb9d8..f1c5424d0 100644
--- a/mgmtd/mgmt_be_adapter.c
+++ b/mgmtd/mgmt_be_adapter.c
@@ -438,7 +438,7 @@ static int mgmt_be_send_subscr_reply(struct mgmt_be_client_adapter *adapter,
be_msg.message_case = MGMTD__BE_MESSAGE__MESSAGE_SUBSCR_REPLY;
be_msg.subscr_reply = &reply;
- __dbg("Sending SUBSCR_REPLY client: %s sucess: %u", adapter->name,
+ __dbg("Sending SUBSCR_REPLY client: %s success: %u", adapter->name,
success);
return mgmt_be_adapter_send_msg(adapter, &be_msg);
diff --git a/mgmtd/mgmt_txn.c b/mgmtd/mgmt_txn.c
index 0f0cccbbd..ed133243a 100644
--- a/mgmtd/mgmt_txn.c
+++ b/mgmtd/mgmt_txn.c
@@ -2710,7 +2710,7 @@ int mgmt_txn_notify_error(struct mgmt_be_client_adapter *adapter,
case MGMTD_TXN_PROC_GETCFG:
case MGMTD_TXN_COMMITCFG_TIMEOUT:
default:
- assert(!"non-native req event in native erorr path");
+ assert(!"non-native req event in native error path");
return -1;
}
}