From 211b8be07d53c18cdf0f6af5cdc3d935b0414bd3 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Sun, 26 Jun 2011 17:37:09 +0000 Subject: [PATCH] fixed bug #31723 (tcp_kill_prio() kills pcbs with the same prio) by updating its documentation only. --- CHANGELOG | 4 ++++ src/core/tcp.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 7c98f4bc..620e4217 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -18,6 +18,10 @@ HISTORY ++ Bugfixes: 2011-06-26: Simon Goldschmidt + * tcp.c: fixed bug #31723 (tcp_kill_prio() kills pcbs with the same prio) by + updating its documentation only. + + 2011-06-26: Simon Goldschmidt * mem.c: fixed bug #33545: With MEM_USE_POOLS==1, mem_malloc can return an unaligned pointer. diff --git a/src/core/tcp.c b/src/core/tcp.c index 7fd36865..fe05e04a 100644 --- a/src/core/tcp.c +++ b/src/core/tcp.c @@ -1114,7 +1114,8 @@ tcp_recv_null(void *arg, struct tcp_pcb *pcb, struct pbuf *p, err_t err) #endif /* LWIP_CALLBACK_API */ /** - * Kills the oldest active connection that has lower priority than prio. + * Kills the oldest active connection that has the same or lower priority than + * 'prio'. * * @param prio minimum priority */