aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-07 11:34:50 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-07 11:34:50 +0000
commitf2b9f7ee4c3d0cb35fcf0350006c3d78fe596b76 (patch)
tree8fb3ae7e00c4f47175d65c74711026d7d2db3ebf /networking
parentc7ffbc597ae0749b9e0cc4fb2f191292afe949e6 (diff)
downloadbusybox-w32-f2b9f7ee4c3d0cb35fcf0350006c3d78fe596b76.tar.gz
busybox-w32-f2b9f7ee4c3d0cb35fcf0350006c3d78fe596b76.tar.bz2
busybox-w32-f2b9f7ee4c3d0cb35fcf0350006c3d78fe596b76.zip
- 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). git-svn-id: svn://busybox.net/trunk/busybox@11797 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'networking')
-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)
353 for (op = OptArray; op->name; op++) { /* Find table entry. */ 353 for (op = OptArray; op->name; op++) { /* Find table entry. */
354 if (strcmp(p, op->name) == 0) { /* If name matches... */ 354 if (strcmp(p, op->name) == 0) { /* If name matches... */
355 if ((mask &= op->flags)) { /* set the mask and go. */ 355 if ((mask &= op->flags)) { /* set the mask and go. */
356 goto FOUND_ARG;; 356 goto FOUND_ARG;
357 } 357 }
358 /* If we get here, there was a valid arg with an */ 358 /* If we get here, there was a valid arg with an */
359 /* invalid '-' prefix. */ 359 /* invalid '-' prefix. */