MINOR: connection: use MT_LIST_ADDQ() to add connections to idle lists

When a connection is added to an idle list, it's already detached and
cannot be seen by two threads at once, so there's no point using
TRY_ADDQ, there will never be any conflict. Let's just use the cheaper
ADDQ.
diff --git a/src/mux_h1.c b/src/mux_h1.c
index ae3bca3..80a7b7d 100644
--- a/src/mux_h1.c
+++ b/src/mux_h1.c
@@ -2265,9 +2265,9 @@
 		struct server *srv = objt_server(conn->target);
 
 		if (conn_in_list == CO_FL_SAFE_LIST)
-			MT_LIST_TRY_ADDQ(&srv->safe_conns[tid], &conn->list);
+			MT_LIST_ADDQ(&srv->safe_conns[tid], &conn->list);
 		else
-			MT_LIST_TRY_ADDQ(&srv->idle_conns[tid], &conn->list);
+			MT_LIST_ADDQ(&srv->idle_conns[tid], &conn->list);
 	}
 	return NULL;
 }