Changeset 1562
- Timestamp:
- 01/23/10 09:08:03 (8 months ago)
- Files:
-
- 1 modified
-
trunk/batman-adv-kernelland/gateway_common.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/batman-adv-kernelland/gateway_common.c
r1553 r1562 86 86 switch (*gw_mode_tmp) { 87 87 case GW_MODE_CLIENT: 88 ret = strict_strto l(tokptr, 10, gw_clnt_class_tmp);88 ret = strict_strtoul(tokptr, 10, gw_clnt_class_tmp); 89 89 if (ret) { 90 90 printk(KERN_ERR "Client class of gateway mode invalid: %s\n", … … 105 105 *slash_ptr = 0; 106 106 107 ret = strict_strto l(tokptr, 10, down);107 ret = strict_strtoul(tokptr, 10, down); 108 108 if (ret) { 109 109 printk(KERN_ERR "Download speed of gateway mode invalid: %s\n", … … 122 122 /* we also got some upload info */ 123 123 if (slash_ptr) { 124 ret = strict_strto l(slash_ptr + 1, 10, up);124 ret = strict_strtoul(slash_ptr + 1, 10, up); 125 125 if (ret) { 126 126 printk(KERN_ERR "Upload speed of gateway mode invalid: %s\n",
