diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2023-06-25 10:22:34 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-25 10:22:34 -0500 | 
| commit | 64ef7364c6c4ef8a0db7f47fdd9de4e451763702 (patch) | |
| tree | 13878218d483ef79438e03ce6375969878b6ea02 /lib/mgmt_fe_client.c | |
| parent | 0ea4297e3c3e55d3894820f9359215b6957fa213 (diff) | |
| parent | 6dccdb9b0d1b3bbf04196f712ebccf9a8f39e47e (diff) | |
Merge pull request #13846 from LabNConsulting/chopps/backport-13795frr-9.0-rc
backport of #13795
Diffstat (limited to 'lib/mgmt_fe_client.c')
| -rw-r--r-- | lib/mgmt_fe_client.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/mgmt_fe_client.c b/lib/mgmt_fe_client.c index be7263f21b..45d57175d6 100644 --- a/lib/mgmt_fe_client.c +++ b/lib/mgmt_fe_client.c @@ -164,7 +164,7 @@ static int mgmt_fe_send_session_req(struct mgmt_fe_client *client,  int mgmt_fe_send_lockds_req(struct mgmt_fe_client *client, uint64_t session_id,  			    uint64_t req_id, Mgmtd__DatastoreId ds_id, -			    bool lock) +			    bool lock, bool scok)  {  	(void)req_id;  	Mgmtd__FeMessage fe_msg; @@ -185,7 +185,7 @@ int mgmt_fe_send_lockds_req(struct mgmt_fe_client *client, uint64_t session_id,  		lock ? "" : "UN", dsid2name(ds_id), session_id); -	return mgmt_fe_client_send_msg(client, &fe_msg, false); +	return mgmt_fe_client_send_msg(client, &fe_msg, scok);  }  int mgmt_fe_send_setcfg_req(struct mgmt_fe_client *client, uint64_t session_id, @@ -411,6 +411,7 @@ static int mgmt_fe_client_handle_msg(struct mgmt_fe_client *client,  				session->user_ctx, fe_msg->setcfg_reply->req_id,  				fe_msg->setcfg_reply->success,  				fe_msg->setcfg_reply->ds_id, +				fe_msg->setcfg_reply->implicit_commit,  				fe_msg->setcfg_reply->error_if_any);  		break;  	case MGMTD__FE_MESSAGE__MESSAGE_COMMCFG_REPLY:  | 
