diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-10 21:38:30 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-10 21:38:30 +0000 |
commit | 48b6c559ccf5bc74eaa7e334310e9edf367033e2 (patch) | |
tree | 14183fd728ce51ae10baee70f7d8f72c39d30649 /libbb/xconnect.c | |
parent | 04c078dac604c21cf593a3298f788f69b7f739e6 (diff) | |
download | busybox-w32-48b6c559ccf5bc74eaa7e334310e9edf367033e2.tar.gz busybox-w32-48b6c559ccf5bc74eaa7e334310e9edf367033e2.tar.bz2 busybox-w32-48b6c559ccf5bc74eaa7e334310e9edf367033e2.zip |
make a few struct bb_applet members conditional
rename sllep_and_die -> xfunc_die
make fflush_stdout_and_exit NOFORK-safe
fix some buglets found by randomconfig
git-svn-id: svn://busybox.net/trunk/busybox@18391 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/xconnect.c')
-rw-r--r-- | libbb/xconnect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xconnect.c b/libbb/xconnect.c index 8466325c7..e7d510678 100644 --- a/libbb/xconnect.c +++ b/libbb/xconnect.c | |||
@@ -166,7 +166,7 @@ USE_FEATURE_IPV6(sa_family_t af,) | |||
166 | if (rc || !result) { | 166 | if (rc || !result) { |
167 | bb_error_msg("bad address '%s'", org_host); | 167 | bb_error_msg("bad address '%s'", org_host); |
168 | if (ai_flags & DIE_ON_ERROR) | 168 | if (ai_flags & DIE_ON_ERROR) |
169 | sleep_and_die(); | 169 | xfunc_die(); |
170 | goto ret; | 170 | goto ret; |
171 | } | 171 | } |
172 | r = xmalloc(offsetof(len_and_sockaddr, sa) + result->ai_addrlen); | 172 | r = xmalloc(offsetof(len_and_sockaddr, sa) + result->ai_addrlen); |