aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-08-22 15:57:50 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-08-22 15:57:50 +0000
commit82c045893751fd63299f97ca7dd61248d5668f10 (patch)
treeb4cdfd16b6aea4804eccb72ea9f04c130074863a /libbb
parent43b6f06165941bdbdce8e200a63ac6341c09ec23 (diff)
downloadbusybox-w32-82c045893751fd63299f97ca7dd61248d5668f10.tar.gz
busybox-w32-82c045893751fd63299f97ca7dd61248d5668f10.tar.bz2
busybox-w32-82c045893751fd63299f97ca7dd61248d5668f10.zip
Two FEATURE_CLEAN_UP patches from Shaun Jackman, closing filehandles.
git-svn-id: svn://busybox.net/trunk/busybox@11224 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/xconnect.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libbb/xconnect.c b/libbb/xconnect.c
index 09a1daad1..1e5799e51 100644
--- a/libbb/xconnect.c
+++ b/libbb/xconnect.c
@@ -64,6 +64,7 @@ int xconnect(struct sockaddr_in *s_addr)
64 int s = socket(AF_INET, SOCK_STREAM, 0); 64 int s = socket(AF_INET, SOCK_STREAM, 0);
65 if (connect(s, (struct sockaddr_in *)s_addr, sizeof(struct sockaddr_in)) < 0) 65 if (connect(s, (struct sockaddr_in *)s_addr, sizeof(struct sockaddr_in)) < 0)
66 { 66 {
67 if (ENABLE_FEATURE_CLEAN_UP) close(s);
67 bb_perror_msg_and_die("Unable to connect to remote host (%s)", 68 bb_perror_msg_and_die("Unable to connect to remote host (%s)",
68 inet_ntoa(s_addr->sin_addr)); 69 inet_ntoa(s_addr->sin_addr));
69 } 70 }