diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | toys/other/ifconfig.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -42,7 +42,7 @@ uninstall: clean:: rm -rf toybox toybox_unstripped generated/config.h generated/Config.in \ - generated/newtoys.h generated/globals.htestdir \ + generated/newtoys.h generated/globals.h testdir \ generated/Config.probed generated/oldtoys.h generated/flags.h \ generated/portability.h .singleconfig .singleconfig.old \ generated/instlist generated/mkflags generated/config2help \ diff --git a/toys/other/ifconfig.c b/toys/other/ifconfig.c index 36529c95..2542d791 100644 --- a/toys/other/ifconfig.c +++ b/toys/other/ifconfig.c @@ -395,7 +395,7 @@ void ifconfig_main(void) ptr = p = (char *)sock->sa_data; memset(sock, 0, sizeof(struct sockaddr)); - if (!argv[1]) { + if (argv[1]) { if (!strcmp("ether", *++argv)) sock->sa_family = ARPHRD_ETHER; else if (!strcmp("infiniband", *argv)) { sock->sa_family = ARPHRD_INFINIBAND; |