mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
Fix the Set method comparison
This commit is contained in:
parent
f21814dd4e
commit
35faf181a9
1 changed files with 2 additions and 2 deletions
|
|
@ -1647,8 +1647,8 @@ static int mparam_set_value(DMPARAM_ARGS)
|
|||
if (p) *p = 0;
|
||||
}
|
||||
|
||||
if (DM_STRCMP(value, dmctx->in_value) == 0) {
|
||||
BBF_DEBUG("Requested value (%s) is same as current value (%s)...", dmctx->in_value, value);
|
||||
if (DM_STRCMP(value, param_value) == 0) {
|
||||
BBF_DEBUG("Requested value (%s) is same as current value (%s)...", param_value, value);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue