aboutsummaryrefslogtreecommitdiff
path: root/networking/ifconfig.c
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2001-03-10 02:00:54 +0000
committerManuel Novoa III <mjn3@codepoet.org>2001-03-10 02:00:54 +0000
commit78f57460f2776aeddb584dd10923959f26863ea5 (patch)
tree69bd4341c9a5c604793226a1d2509cf1dd57ab6b /networking/ifconfig.c
parentd2117e9c828e02bfc1da38768fc3f6198cab9340 (diff)
downloadbusybox-78f57460f2776aeddb584dd10923959f26863ea5.tar.gz
Quick mod to enable option -a for ifconfig.
Diffstat (limited to 'networking/ifconfig.c')
-rw-r--r--networking/ifconfig.c22
1 files changed, 14 insertions, 8 deletions
diff --git a/networking/ifconfig.c b/networking/ifconfig.c
index daf189458..95dda3bce 100644
--- a/networking/ifconfig.c
+++ b/networking/ifconfig.c
@@ -15,7 +15,7 @@
* Foundation; either version 2 of the License, or (at
* your option) any later version.
*
- * $Id: ifconfig.c,v 1.6 2001/03/09 23:06:15 mjn3 Exp $
+ * $Id: ifconfig.c,v 1.7 2001/03/10 02:00:54 mjn3 Exp $
*
*/
@@ -234,7 +234,7 @@ static int in_ether(char *bufp, struct sockaddr *sap);
#endif
#ifdef BB_FEATURE_IFCONFIG_STATUS
-extern int display_interfaces(void);
+extern int display_interfaces(int display_all);
#endif
/*
@@ -263,21 +263,27 @@ int ifconfig_main(int argc, char **argv)
if(argc < 2) {
#ifdef BB_FEATURE_IFCONFIG_STATUS
- return(display_interfaces());
+ return(display_interfaces(0));
#else
show_usage();
#endif
}
+ /* skip argv[0] */
+ argc--;
+ argv++;
+
+#ifdef BB_FEATURE_IFCONFIG_STATUS
+ if ((argc == 1) && (strcmp(*argv, "-a") == 0)) {
+ return(display_interfaces(1));
+ }
+#endif
+
/* Create a channel to the NET kernel. */
if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
perror_msg_and_die("socket");
}
- /* skip argv[0] */
- argc--;
- argv++;
-
/* get interface name */
safe_strncpy(ifr.ifr_name, *argv, IFNAMSIZ);
@@ -290,7 +296,7 @@ int ifconfig_main(int argc, char **argv)
mask = M_MASK; /* set the appropriate mask. */
}
for (op = OptArray ; op->name ; op++) { /* Find table entry. */
- if (!strcmp(p,op->name)) { /* If name matches... */
+ if (strcmp(p,op->name) == 0) { /* If name matches... */
if ((mask &= op->flags)) { /* set the mask and go. */
goto FOUND_ARG;;
}