diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:14:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:14:08 +0000 |
commit | cbe31dace5fb24304694d399b9eb267fbe752516 (patch) | |
tree | 49d1bb722d95eb1aded6b5d354ac86e56c481c10 /networking/nslookup.c | |
parent | 94456f598417f2f61edb97b5ab67ddfdc408ad10 (diff) | |
download | busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.tar.gz busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.tar.bz2 busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.zip |
It turns out that DODMALLOC was broken when I reorganized busybox.h
header file usage before the 0.49 release. To fix it, I had to move
the '#include "busybox.h"' to the end of the list of #include files.
-Erik
Diffstat (limited to 'networking/nslookup.c')
-rw-r--r-- | networking/nslookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/nslookup.c b/networking/nslookup.c index 33732de68..8791b5efe 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c | |||
@@ -21,7 +21,6 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "busybox.h" | ||
25 | #include <ctype.h> | 24 | #include <ctype.h> |
26 | #include <errno.h> | 25 | #include <errno.h> |
27 | #include <stdio.h> | 26 | #include <stdio.h> |
@@ -32,6 +31,7 @@ | |||
32 | #include <sys/socket.h> | 31 | #include <sys/socket.h> |
33 | #include <sys/types.h> | 32 | #include <sys/types.h> |
34 | #include <netinet/in.h> | 33 | #include <netinet/in.h> |
34 | #include "busybox.h" | ||
35 | 35 | ||
36 | /* | 36 | /* |
37 | | I'm only implementing non-interactive mode; | 37 | | I'm only implementing non-interactive mode; |
@@ -170,4 +170,4 @@ int nslookup_main(int argc, char **argv) | |||
170 | return EXIT_SUCCESS; | 170 | return EXIT_SUCCESS; |
171 | } | 171 | } |
172 | 172 | ||
173 | /* $Id: nslookup.c,v 1.21 2001/02/14 21:23:06 andersen Exp $ */ | 173 | /* $Id: nslookup.c,v 1.22 2001/02/20 06:14:08 andersen Exp $ */ |