commit | 151a2387ece5489313cd4955a2ba17e132ee8b2d | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Thu Oct 05 18:02:55 2017 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sun Oct 22 09:54:18 2017 +0200 |
tree | 4faefc4c264096fca053e7d6c0ee1162971f28bf | |
parent | 5b78a9dd0467d6c158e444b9e3989396609ee328 [diff] [blame] |
MINOR: stream: 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/stream.c b/src/stream.c index 880327b..4ec6283 100644 --- a/src/stream.c +++ b/src/stream.c
@@ -571,7 +571,7 @@ si->exp = TICK_ETERNITY; si->state = SI_ST_CER; - conn_force_close(srv_conn); + conn_full_close(srv_conn); if (si->err_type) return 0;