From e36ffd3b1545d0433af984aa990f5c9be0cdbcdf Mon Sep 17 00:00:00 2001 From: Gleb Smirnoff Date: Tue, 29 Nov 2005 12:01:26 +0000 Subject: [PATCH] Catch up with ip_dummynet.h rev. 1.38 and fix build. --- sbin/ipfw/ipfw2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/ipfw/ipfw2.c b/sbin/ipfw/ipfw2.c index 26237ebf42bb..fdba58a440be 100644 --- a/sbin/ipfw/ipfw2.c +++ b/sbin/ipfw/ipfw2.c @@ -2163,7 +2163,7 @@ list_pipes(void *data, uint nbytes, int ac, char *av[]) char buf[30]; char prefix[80]; - if (p->next != (struct dn_pipe *)DN_IS_PIPE) + if (p->next.sle_next != (struct dn_pipe *)DN_IS_PIPE) break; /* done with pipes, now queues */ /* @@ -2202,7 +2202,7 @@ list_pipes(void *data, uint nbytes, int ac, char *av[]) for (fs = next; nbytes >= sizeof *fs; fs = next) { char prefix[80]; - if (fs->next != (struct dn_flow_set *)DN_IS_QUEUE) + if (fs->next.sle_next != (struct dn_flow_set *)DN_IS_QUEUE) break; l = sizeof(*fs) + fs->rq_elements * sizeof(*q); next = (char *)fs + l;