From: Willy Tarreau Date: Sun, 22 Oct 2017 07:35:01 +0000 (+0200) Subject: MINOR: backend: use conn_full_close() instead of conn_force_close() X-Git-Tag: v1.8-dev3~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f098fd061f0af46fe51e6588023fb7f57359791a;p=thirdparty%2Fhaproxy.git MINOR: backend: 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/backend.c b/src/backend.c index 06f15a1ca0..d0810e2ac9 100644 --- a/src/backend.c +++ b/src/backend.c @@ -1106,7 +1106,7 @@ int connect_server(struct stream *s) /* we may have to release our connection if we couldn't swap it */ if (old_conn && !old_conn->owner) { LIST_DEL(&old_conn->list); - conn_force_close(old_conn); + conn_full_close(old_conn); conn_free(old_conn); } }