aboutsummaryrefslogtreecommitdiff
path: root/networking/ifconfig.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2005-10-07 11:34:50 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2005-10-07 11:34:50 +0000
commit0b42a6a8cf94dd05434cf5554449a6b19d47fb1e (patch)
tree8fb3ae7e00c4f47175d65c74711026d7d2db3ebf /networking/ifconfig.c
parent4d63525f76fd783c8ef436996c1b6f1e29dc2945 (diff)
downloadbusybox-0b42a6a8cf94dd05434cf5554449a6b19d47fb1e.tar.gz
- remove superfluous C statements ";;" in decompress_unzip.c, dpkg_deb.c ifconfig.c
- gzip.c: see if O_NOFOLLOW is defined before using it, else take alternate path closes bug #221 (partially; The rest will follow later).
Diffstat (limited to 'networking/ifconfig.c')
-rw-r--r--networking/ifconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ifconfig.c b/networking/ifconfig.c
index b121eb9f3..eddf052e0 100644
--- a/networking/ifconfig.c
+++ b/networking/ifconfig.c
@@ -353,7 +353,7 @@ int ifconfig_main(int argc, char **argv)
for (op = OptArray; op->name; op++) { /* Find table entry. */
if (strcmp(p, op->name) == 0) { /* If name matches... */
if ((mask &= op->flags)) { /* set the mask and go. */
- goto FOUND_ARG;;
+ goto FOUND_ARG;
}
/* If we get here, there was a valid arg with an */
/* invalid '-' prefix. */