ngtcp2: fix typo in preprocessor condition

Ref: 927ede7edc

Bug: https://github.com/curl/curl/pull/8981#discussion_r894312185
Reported-by: Emil Engler
Closes #8987
This commit is contained in:
Viktor Szakats 2022-06-10 23:07:15 +00:00
parent 37c5a527a8
commit dd94076947
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -728,7 +728,7 @@ CURLcode Curl_quic_connect(struct Curl_easy *data,
ngtcp2_connection_close_error_default(&qs->last_error);
#if defined(__linux__) && defined(UDP_SEGMENT) & defined(HAVE_SENDMSG)
#if defined(__linux__) && defined(UDP_SEGMENT) && defined(HAVE_SENDMSG)
qs->no_gso = FALSE;
#else
qs->no_gso = TRUE;