ports/sysutils/pfstat/files/patch-pf.c
Pav Lucistnik c880778a6e - Fix build with pf 4.1
Submitted by:	mlaier (maintainer)
2007-07-14 16:57:27 +00:00

15 lines
400 B
C

--- pf.c.orig Thu May 11 23:41:07 2006
+++ pf.c Mon Dec 11 21:08:31 2006
@@ -67,10 +67,8 @@
/* first, find out how many queues there are */
memset(&pa, 0, sizeof(pa));
- if (ioctl(fd, DIOCGETALTQS, &pa)) {
- fprintf(stderr, "ioctl: DIOCGETALTQS: %s\n", strerror(errno));
- return (1);
- }
+ if (ioctl(fd, DIOCGETALTQS, &pa))
+ return (0);
mnr = pa.nr;
/* fetch each of those queues */