Skip to content

Commit

Permalink
Bug fix for SSID update in local and remote agent
Browse files Browse the repository at this point in the history
  • Loading branch information
behanansaju authored and soumyasmunshi committed Dec 16, 2024
1 parent fc5175b commit ea32422
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cmd/em_cmd_set_ssid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,11 @@ em_cmd_set_ssid_t::em_cmd_set_ssid_t(em_cmd_params_t param, dm_easy_mesh_t& dm)
memset((unsigned char *)&m_orch_desc[0], 0, EM_MAX_CMD*sizeof(em_orch_desc_t));

m_orch_op_idx = 0;
m_num_orch_desc = 2;
m_num_orch_desc = 3;
m_orch_desc[0].op = dm_orch_type_db_cfg;
m_orch_desc[1].op = dm_orch_type_em_update;
m_orch_desc[1].submit = true;
m_orch_desc[2].op = dm_orch_type_net_ssid_update;

strncpy(m_name, "set_ssid", strlen("set_ssid") + 1);
m_svc = em_service_type_ctrl;
Expand Down

0 comments on commit ea32422

Please sign in to comment.