MINOR: tcp: use conn_full_close() instead of conn_force_close()

There's no point in using conn_force_close() in outgoing connect()
since XPRT_TRACKED is not set so both functions are equivalent.
diff --git a/src/proto_tcp.c b/src/proto_tcp.c
index ff800c8..e4e6483 100644
--- a/src/proto_tcp.c
+++ b/src/proto_tcp.c
@@ -545,7 +545,7 @@
 	fdtab[fd].linger_risk = 1;  /* close hard if needed */
 
 	if (conn_xprt_init(conn) < 0) {
-		conn_force_close(conn);
+		conn_full_close(conn);
 		conn->flags |= CO_FL_ERROR;
 		return SF_ERR_RESOURCE;
 	}