diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-10-31 09:31:46 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-10-31 09:31:46 +0000 |
commit | e6dc439b3a3fa2a64f9e938ac4e5810025c04242 (patch) | |
tree | bacb9f48301189de134d9f8edc2f1f45c65086c5 /libbb/safe_write.c | |
parent | 8179cf2b78a508a350c7497c1e234376f20f418f (diff) | |
download | busybox-w32-e6dc439b3a3fa2a64f9e938ac4e5810025c04242.tar.gz busybox-w32-e6dc439b3a3fa2a64f9e938ac4e5810025c04242.tar.bz2 busybox-w32-e6dc439b3a3fa2a64f9e938ac4e5810025c04242.zip |
Rework wget, the xconnect interface, and its various clients
in order to fix the problems with round robin DNS reported
by Andrew Flegg:
http://busybox.net/lists/busybox/2003-October/009579.html
This removes the ipv6 specific xconnect dns lookups. I do
not see why that would need to be special cased for ipv6 as
was done, but that will just have to be tested.
So IPV6 people -- please test this change!
-Erik
Diffstat (limited to 'libbb/safe_write.c')
-rw-r--r-- | libbb/safe_write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/safe_write.c b/libbb/safe_write.c index dd35f35ae..0ac6c2d96 100644 --- a/libbb/safe_write.c +++ b/libbb/safe_write.c | |||
@@ -26,7 +26,7 @@ | |||
26 | 26 | ||
27 | 27 | ||
28 | 28 | ||
29 | ssize_t safe_write(int fd, void *buf, size_t count) | 29 | ssize_t safe_write(int fd, const void *buf, size_t count) |
30 | { | 30 | { |
31 | ssize_t n; | 31 | ssize_t n; |
32 | 32 | ||