mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-08 16:23:24 -04:00
MEDIUM: quic: Fix build.
Spell conn_xprt_start() correctly. This should fix github issue #1189.
This commit is contained in:
parent
09cc669afb
commit
7ab6d8bdf3
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ int quic_session_accept(struct connection *cli_conn)
|
|||
goto out_free_conn;
|
||||
}
|
||||
|
||||
if (conn_xpt_start(cli_conn < 0))
|
||||
if (conn_xprt_start(cli_conn < 0))
|
||||
goto out_free_conn;
|
||||
|
||||
sess = session_new(p, l, &cli_conn->obj_type);
|
||||
|
|
|
|||
Loading…
Reference in a new issue