swconfig: swlib.c: remove const qualifier for val.s since this is supposed to be free'd

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>

SVN-Revision: 46230
v19.07.3_mercusys_ac12_duma
John Crispin 9 years ago
parent 08d4d4921d
commit 2b9bdf4d6f

@ -363,7 +363,7 @@ int swlib_set_attr_string(struct switch_dev *dev, struct switch_attr *a, int por
val.value.i = atoi(str);
break;
case SWITCH_TYPE_STRING:
val.value.s = str;
val.value.s = (char *)str;
break;
case SWITCH_TYPE_PORTS:
ports = alloca(sizeof(struct switch_port) * dev->ports);

@ -135,7 +135,7 @@ struct switch_val {
int err;
int port_vlan;
union {
const char *s;
char *s;
int i;
struct switch_port *ports;
} value;

Loading…
Cancel
Save