Skip to content

Commit

Permalink
ngtcp2: adapt to error code rename
Browse files Browse the repository at this point in the history
Closes #5786
  • Loading branch information
bagder committed Aug 5, 2020
1 parent 70999e6 commit 2754a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vquic/ngtcp2.c
Expand Up @@ -1835,7 +1835,7 @@ static CURLcode ng_flush_egress(struct connectdata *conn, int sockfd,
}
continue;
}
else if(outlen == NGTCP2_ERR_WRITE_STREAM_MORE) {
else if(outlen == NGTCP2_ERR_WRITE_MORE) {
assert(ndatalen > 0);
rv = nghttp3_conn_add_write_offset(qs->h3conn, stream_id,
ndatalen);
Expand Down

0 comments on commit 2754a89

Please sign in to comment.