diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-07-11 11:11:56 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-07-11 11:11:56 +0000 |
commit | 2276d836398564a90f5ff237e63ca3104ae509f0 (patch) | |
tree | b516e1554a434ba539ed5318c0b3736940c1dd99 /networking | |
parent | cafc10323099befd1e45bb1d212a511dcbb92b11 (diff) | |
download | busybox-2276d836398564a90f5ff237e63ca3104ae509f0.tar.gz |
Fixup warnings and undefined operations that show up in gcc-3.1
-Erik
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ifconfig.c | 3 | ||||
-rw-r--r-- | networking/telnet.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/networking/ifconfig.c b/networking/ifconfig.c index 9e87c8be5..3ada4f178 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.17 2002/07/03 11:46:34 andersen Exp $ + * $Id: ifconfig.c,v 1.18 2002/07/11 11:11:52 andersen Exp $ * */ @@ -504,6 +504,7 @@ int ifconfig_main(int argc, char **argv) } } LOOP: + continue; } /* end of while-loop */ return goterr; diff --git a/networking/telnet.c b/networking/telnet.c index 86d672c2d..14b71c85d 100644 --- a/networking/telnet.c +++ b/networking/telnet.c @@ -36,6 +36,7 @@ #include <errno.h> #include <stdlib.h> #include <stdarg.h> +#include <string.h> #include <signal.h> #include <arpa/telnet.h> #include <sys/types.h> |