commit | dae6aa28598cb2353291f18ca52e768c3259165a | [log] [tgz] |
---|---|---|
author | Rob Landley <rob@landley.net> | Thu Mar 09 22:39:08 2006 +0000 |
committer | Rob Landley <rob@landley.net> | Thu Mar 09 22:39:08 2006 +0000 |
tree | 89d64a7f3656c01ec09a1e00b4878fc3a7b2b7ba | |
parent | 1f305dc0fdb8415c9c1321e49cc194089e58c456 [diff] [blame] |
Fixup to the previous (portability) patch. Linux actually does need arpa/inet.h rather than netinet/in.h, otherwise we get warnings.
diff --git a/include/inet_common.h b/include/inet_common.h index f330aa9..aa883ed 100644 --- a/include/inet_common.h +++ b/include/inet_common.h
@@ -11,7 +11,7 @@ #include <features.h> #include <sys/types.h> #include <sys/socket.h> -#include <netinet/in.h> +#include "platform.h" extern const char bb_INET_default[]; /* = "default" */