mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2025-12-10 07:44:41 +01:00
Set Method: Allow to set empty value
This commit is contained in:
parent
2048786b91
commit
2a904d697b
1 changed files with 1 additions and 1 deletions
|
|
@ -465,7 +465,7 @@ int cwmp_set_multi_parameters_value(struct list_head *parameters_values_list, st
|
|||
|
||||
list_for_each_entry (param_value, parameters_values_list, list) {
|
||||
|
||||
if (CWMP_STRLEN(param_value->name) == 0 || CWMP_STRLEN(param_value->value) == 0)
|
||||
if (CWMP_STRLEN(param_value->name) == 0)
|
||||
continue;
|
||||
|
||||
int res = cwmp_set_parameter_value(param_value->name, param_value->value, faults_list);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue