summaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-27 16:59:15 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-27 16:59:15 +0000
commit097c324f59e00182c9a2ca9e7a8b2fe06a078c6c (patch)
tree4817bcd854907cb2cd905780e54ea24faf1c80c5 /networking
parentd9e15f206840219bb0f39c912a42fdcf8cbcaed6 (diff)
downloadbusybox-w32-097c324f59e00182c9a2ca9e7a8b2fe06a078c6c.tar.gz
busybox-w32-097c324f59e00182c9a2ca9e7a8b2fe06a078c6c.tar.bz2
busybox-w32-097c324f59e00182c9a2ca9e7a8b2fe06a078c6c.zip
fix remaining survivors of the return(a) cleanup
Diffstat (limited to 'networking')
-rw-r--r--networking/ifupdown.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index 5d140f1da..76ff2a830 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -34,7 +34,7 @@
34/* Forward declaration */ 34/* Forward declaration */
35struct interface_defn_t; 35struct interface_defn_t;
36 36
37typedef int (execfn)(char *command); 37typedef int execfn(char *command);
38 38
39struct method_t 39struct method_t
40{ 40{
@@ -111,17 +111,17 @@ static char *startup_PATH;
111 111
112#ifdef CONFIG_FEATURE_IFUPDOWN_IP 112#ifdef CONFIG_FEATURE_IFUPDOWN_IP
113 113
114static unsigned int count_bits(unsigned int a) 114static unsigned count_bits(unsigned a)
115{ 115{
116 unsigned int result; 116 unsigned result;
117 result = (a & 0x55) + ((a >> 1) & 0x55); 117 result = (a & 0x55) + ((a >> 1) & 0x55);
118 result = (result & 0x33) + ((result >> 2) & 0x33); 118 result = (result & 0x33) + ((result >> 2) & 0x33);
119 return ((result & 0x0F) + ((result >> 4) & 0x0F)); 119 return (result & 0x0F) + ((result >> 4) & 0x0F);
120} 120}
121 121
122static int count_netmask_bits(char *dotted_quad) 122static int count_netmask_bits(char *dotted_quad)
123{ 123{
124 unsigned int result, a, b, c, d; 124 unsigned result, a, b, c, d;
125 /* Found a netmask... Check if it is dotted quad */ 125 /* Found a netmask... Check if it is dotted quad */
126 if (sscanf(dotted_quad, "%u.%u.%u.%u", &a, &b, &c, &d) != 4) 126 if (sscanf(dotted_quad, "%u.%u.%u.%u", &a, &b, &c, &d) != 4)
127 return -1; 127 return -1;