diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2024-03-25 14:37:06 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-25 14:37:06 +0200 | 
| commit | b5edaf7739340a70edbb4b839cac235525068b1d (patch) | |
| tree | d62efc1c684a38709b563f071a456ad7f79d3c2d | |
| parent | 4cd6de9e14601609b0f4eb563a3d28795deb8cf5 (diff) | |
| parent | 9f24fe84ac804b218a3f8c38316dce1e1bf35c19 (diff) | |
Merge pull request #15606 from FRRouting/mergify/bp/dev/10.0/pr-15602
mgmtd: fix a couple of log messages (backport #15602)
| -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 5896db1e58..f483d48d8d 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;  	}  | 
