mirror of
https://github.com/curl/curl.git
synced 2026-08-08 09:52:55 +03:00
connection bits: move 'connect_only' here
Move the bit `connection_only` from `connectdata` to `ConnectBits`. Since we keep all other bits there, seems the correct place. Closes #20959
This commit is contained in:
parent
1098e1044e
commit
aeee5dd616
9 changed files with 14 additions and 13 deletions
|
|
@ -729,7 +729,7 @@ static void close_connect_only(struct connectdata *conn,
|
|||
{
|
||||
(void)userdata;
|
||||
(void)data;
|
||||
if(conn->connect_only)
|
||||
if(conn->bits.connect_only)
|
||||
connclose(conn, "Removing connect-only easy handle");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue