From 5500a36b2904b38300f92c49aafb62f577766d3f Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 21 Nov 2017 12:55:07 +0100 Subject: [PATCH] ... and fix DEBUG string --- src/core/tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/tcp.c b/src/core/tcp.c index e9336d64..e5521b8f 100644 --- a/src/core/tcp.c +++ b/src/core/tcp.c @@ -1733,7 +1733,7 @@ tcp_handle_closepend(void) struct tcp_pcb *next = pcb->next; /* send pending FIN */ if (pcb->flags & TF_CLOSEPEND) { - LWIP_DEBUGF(TCP_DEBUG, ("tcp_fasttmr: pending FIN\n")); + LWIP_DEBUGF(TCP_DEBUG, ("tcp_handle_closepend: pending FIN\n")); tcp_clear_flags(pcb, TF_CLOSEPEND); tcp_close_shutdown_fin(pcb); }