From 8c9b99458d5d66e898a0855d1a8d4f8b5e891a9f Mon Sep 17 00:00:00 2001 From: Simon Goldschmidt Date: Fri, 7 Feb 2014 12:11:36 +0100 Subject: [PATCH] Fixed forgotten brackets in last commit --- src/core/tcp_out.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/tcp_out.c b/src/core/tcp_out.c index 472e2963..bc67e09f 100644 --- a/src/core/tcp_out.c +++ b/src/core/tcp_out.c @@ -756,7 +756,7 @@ tcp_enqueue_flags(struct tcp_pcb *pcb, u8_t flags) #endif /* LWIP_WND_SCALE */ } #if LWIP_TCP_TIMESTAMPS - if ((pcb->flags & TF_TIMESTAMP) { + if ((pcb->flags & TF_TIMESTAMP)) { /* Make sure the timestamp option is only included in data segments if we agreed about it with the remote host. */ optflags |= TF_SEG_OPTS_TS;