diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2018-11-05 18:51:16 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2018-11-05 18:51:16 +0000 |
commit | 068f180d1c1bc1349c5a786ea7af214b2b24dcc6 (patch) | |
tree | 040125bc840b731ee263920b3b6544da22b0b7ad /src | |
parent | 7aea90739de0e2808109321c6733451e8cb5cfcb (diff) |
MacOS: fix build
Broken-by: ee8b809061
Diffstat (limited to 'src')
-rw-r--r-- | src/src/ip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/ip.c b/src/src/ip.c index 22f459db9..2a6a24922 100644 --- a/src/src/ip.c +++ b/src/src/ip.c @@ -308,7 +308,7 @@ if (fastopen_blob && f.tcp_fastopen_ok) DEBUG(D_transport|D_v) debug_printf("TFO mode connection attempt to %s, %lu data\n", address, (unsigned long)fastopen_blob->len); - tcp_out_fastopen = fastopen_blob->len > 0 ? TFO_USED : TFO_ATTEMPTED; + tcp_out_fastopen = fastopen_blob->len > 0 ? TFO_ATTEMPTED_DATA : TFO_ATTEMPTED_NODATA; if (len != fastopen_blob->len) DEBUG(D_transport|D_v) |