diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2024-03-22 15:35:52 +0100 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2024-03-22 15:35:52 +0100 |
commit | 988d4444d44814fa3325795154911f420319ac76 (patch) | |
tree | e5e87fb16f32ea83599474a79ea901e01933529a /lib/mgmt_be_client.c | |
parent | Merge pull request #15593 from LabNConsulting/acee/ospf-link-flap-ase-route-c... (diff) | |
download | frr-988d4444d44814fa3325795154911f420319ac76.tar.xz frr-988d4444d44814fa3325795154911f420319ac76.zip |
mgmtd: fix a couple of log messages
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'lib/mgmt_be_client.c')
-rw-r--r-- | lib/mgmt_be_client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mgmt_be_client.c b/lib/mgmt_be_client.c index 5896db1e5..f483d48d8 100644 --- a/lib/mgmt_be_client.c +++ b/lib/mgmt_be_client.c @@ -880,7 +880,7 @@ done: if (ret) be_client_send_error(client, args->txn_id, args->req_id, false, -EINVAL, - "FE cilent %s txn-id %" PRIu64 + "BE client %s txn-id %" PRIu64 " error fetching oper state %d", client->name, args->txn_id, ret); if (ret != NB_OK || !more) @@ -984,7 +984,7 @@ static void be_client_handle_native_msg(struct mgmt_be_client *client, txn_id, msg->req_id, msg->code, client->name); be_client_send_error(client, msg->refer_id, msg->req_id, false, -1, - "BE cilent %s recv msg unknown txn-id %" PRIu64, + "BE client %s recv msg unknown txn-id %" PRIu64, client->name, txn_id); break; } |