From 82e579a29d52bc9776c61e19f05673d5d64bc073 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 17 Apr 2007 17:48:35 +0000 Subject: [PATCH] Changed the comment to pbuf_realloc() that it can't grow (only shrink) chains to reflect the fact that we decided not to change this. --- src/core/pbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/pbuf.c b/src/core/pbuf.c index e4f46712..fcc7383b 100644 --- a/src/core/pbuf.c +++ b/src/core/pbuf.c @@ -388,7 +388,7 @@ pbuf_alloc(pbuf_layer l, u16_t length, pbuf_flag flag) * @note If the pbuf is ROM/REF, only the ->tot_len and ->len fields are adjusted. * @note May not be called on a packet queue. * - * @bug Cannot grow the size of a pbuf (chain) (yet). + * @note Despite its name, pbuf_realloc cannot grow the size of a pbuf (chain). */ void pbuf_realloc(struct pbuf *p, u16_t new_len)