diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-07-11 11:11:56 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-07-11 11:11:56 +0000 |
commit | 9e8681df83a66124e2857d52595b0a99febadee5 (patch) | |
tree | b516e1554a434ba539ed5318c0b3736940c1dd99 /networking | |
parent | 5891772708c56a5c2e4da0c5ed7128c2e08196f2 (diff) | |
download | busybox-w32-9e8681df83a66124e2857d52595b0a99febadee5.tar.gz busybox-w32-9e8681df83a66124e2857d52595b0a99febadee5.tar.bz2 busybox-w32-9e8681df83a66124e2857d52595b0a99febadee5.zip |
Fixup warnings and undefined operations that show up in gcc-3.1
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@5042 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@ | |||
15 | * Foundation; either version 2 of the License, or (at | 15 | * Foundation; either version 2 of the License, or (at |
16 | * your option) any later version. | 16 | * your option) any later version. |
17 | * | 17 | * |
18 | * $Id: ifconfig.c,v 1.17 2002/07/03 11:46:34 andersen Exp $ | 18 | * $Id: ifconfig.c,v 1.18 2002/07/11 11:11:52 andersen Exp $ |
19 | * | 19 | * |
20 | */ | 20 | */ |
21 | 21 | ||
@@ -504,6 +504,7 @@ int ifconfig_main(int argc, char **argv) | |||
504 | } | 504 | } |
505 | } | 505 | } |
506 | LOOP: | 506 | LOOP: |
507 | continue; | ||
507 | } /* end of while-loop */ | 508 | } /* end of while-loop */ |
508 | 509 | ||
509 | return goterr; | 510 | 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 @@ | |||
36 | #include <errno.h> | 36 | #include <errno.h> |
37 | #include <stdlib.h> | 37 | #include <stdlib.h> |
38 | #include <stdarg.h> | 38 | #include <stdarg.h> |
39 | #include <string.h> | ||
39 | #include <signal.h> | 40 | #include <signal.h> |
40 | #include <arpa/telnet.h> | 41 | #include <arpa/telnet.h> |
41 | #include <sys/types.h> | 42 | #include <sys/types.h> |