From 75fd6fc4a4e827b0576de2854e7550ceac4b6658 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Sun, 3 Jun 2007 11:28:25 +0000 Subject: [PATCH] Needed for patch to bug #19937: pbuf_copy is always compiled, not only if ARP_QUEUEING is enabled --- src/core/pbuf.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/pbuf.c b/src/core/pbuf.c index 5ccb0c23..9c0fbe41 100644 --- a/src/core/pbuf.c +++ b/src/core/pbuf.c @@ -656,7 +656,6 @@ pbuf_dechain(struct pbuf *p) return (tail_gone > 0? NULL: q); } -#if ARP_QUEUEING /** * * Create PBUF_RAM copies of pbufs. @@ -741,4 +740,3 @@ pbuf_copy(struct pbuf *p_to, struct pbuf *p_from) #endif return ERR_OK; } -#endif /* ARP_QUEUEING */