swconfig: swlib.c: remove const qualifier for val.s since this is supposed to be...
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 7 Jul 2015 13:45:56 +0000 (13:45 +0000)
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 7 Jul 2015 13:45:56 +0000 (13:45 +0000)
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46230 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/network/config/swconfig/src/swlib.c
package/network/config/swconfig/src/swlib.h

index 334d148..f74c093 100644 (file)
@@ -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);
index bb2ebd8..28bdd7f 100644 (file)
@@ -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;