- patch from Denis Vlasenko to add and use bb_xsocket() and to use
  bb_xopen some more while at it.
  Also use shorter boilerplate while at it.
diff --git a/libbb/xconnect.c b/libbb/xconnect.c
index ec99c58..39052b8 100644
--- a/libbb/xconnect.c
+++ b/libbb/xconnect.c
@@ -61,7 +61,7 @@
 
 int xconnect(struct sockaddr_in *s_addr)
 {
-	int s = socket(AF_INET, SOCK_STREAM, 0);
+	int s = bb_xsocket(AF_INET, SOCK_STREAM, 0);
 	if (connect(s, (struct sockaddr *)s_addr, sizeof(struct sockaddr_in)) < 0)
 	{
 		if (ENABLE_FEATURE_CLEAN_UP) close(s);