diff options
Diffstat (limited to 'networking/vconfig.c')
-rw-r--r-- | networking/vconfig.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/vconfig.c b/networking/vconfig.c index 6c808eb2f..003c1a8f7 100644 --- a/networking/vconfig.c +++ b/networking/vconfig.c | |||
@@ -144,14 +144,14 @@ int vconfig_main(int argc, char **argv) | |||
144 | * doing so wouldn't save that much space and would also make maintainence | 144 | * doing so wouldn't save that much space and would also make maintainence |
145 | * more of a pain. */ | 145 | * more of a pain. */ |
146 | if (ifr.cmd == SET_VLAN_FLAG_CMD) { /* set_flag */ | 146 | if (ifr.cmd == SET_VLAN_FLAG_CMD) { /* set_flag */ |
147 | ifr.u.flag = bb_xgetularg10_bnd(p, 0, 1); | 147 | ifr.u.flag = xatoul_range(p, 0, 1); |
148 | /* DM: in order to set reorder header, qos must be set */ | 148 | /* DM: in order to set reorder header, qos must be set */ |
149 | ifr.vlan_qos = bb_xgetularg10_bnd(argv[3], 0, 7); | 149 | ifr.vlan_qos = xatoul_range(argv[3], 0, 7); |
150 | } else if (ifr.cmd == ADD_VLAN_CMD) { /* add */ | 150 | } else if (ifr.cmd == ADD_VLAN_CMD) { /* add */ |
151 | ifr.u.VID = bb_xgetularg10_bnd(p, 0, VLAN_GROUP_ARRAY_LEN-1); | 151 | ifr.u.VID = xatoul_range(p, 0, VLAN_GROUP_ARRAY_LEN-1); |
152 | } else if (ifr.cmd != DEL_VLAN_CMD) { /* set_{egress|ingress}_map */ | 152 | } else if (ifr.cmd != DEL_VLAN_CMD) { /* set_{egress|ingress}_map */ |
153 | ifr.u.skb_priority = bb_xgetularg10_bnd(p, 0, ULONG_MAX); | 153 | ifr.u.skb_priority = xatou(p); |
154 | ifr.vlan_qos = bb_xgetularg10_bnd(argv[3], 0, 7); | 154 | ifr.vlan_qos = xatoul_range(argv[3], 0, 7); |
155 | } | 155 | } |
156 | } | 156 | } |
157 | 157 | ||