mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
bridge: Fix type in Status output
This commit is contained in:
parent
d378e1d006
commit
adaa953336
1 changed files with 3 additions and 3 deletions
|
|
@ -1652,7 +1652,7 @@ static int get_BridgingBridge_Status(char *refparam, struct dmctx *ctx, void *da
|
|||
if (DM_STRCMP(*value, "Up") == 0) {
|
||||
*value = "Enabled";
|
||||
} else {
|
||||
*value = "Disable";
|
||||
*value = "Disabled";
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1753,7 +1753,7 @@ static int get_BridgingBridgeSTP_Status(char *refparam, struct dmctx *ctx, void
|
|||
if (DM_STRCMP(*value, "Up") == 0) {
|
||||
*value = "Enabled";
|
||||
} else {
|
||||
*value = "Disable";
|
||||
*value = "Disabled";
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -2896,7 +2896,7 @@ static int get_BridgingBridgeProviderBridge_Status(char *refparam, struct dmctx
|
|||
if (DM_STRCMP(*value, "Up") == 0) {
|
||||
*value = "Enabled";
|
||||
} else {
|
||||
*value = "Disable";
|
||||
*value = "Disabled";
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue