diff options
author | Joerg Goltermann <gollo@cvs.openbsd.org> | 2009-02-15 22:15:13 +0000 |
---|---|---|
committer | Joerg Goltermann <gollo@cvs.openbsd.org> | 2009-02-15 22:15:13 +0000 |
commit | 418cf103e765b3ab8a1dcb44023a6097b354b747 (patch) | |
tree | f39fd66781a7e24fab53a726f701f1cd71cfb81f | |
parent | 9da5c7bc18700bb012b5e5f1df44472176b24310 (diff) |
move pflows ioctl to new numbers. Fixes a problem with wi(4)
spotted by mcbride@
Theo@: "This diff is correct. Please commit it right away"
-rw-r--r-- | sys/sys/sockio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/sockio.h b/sys/sys/sockio.h index 83aaea282e7..2d65fd24cb0 100644 --- a/sys/sys/sockio.h +++ b/sys/sys/sockio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sockio.h,v 1.42 2008/12/12 22:07:33 claudio Exp $ */ +/* $OpenBSD: sockio.h,v 1.43 2009/02/15 22:15:12 gollo Exp $ */ /* $NetBSD: sockio.h,v 1.5 1995/08/23 00:40:47 thorpej Exp $ */ /*- @@ -176,7 +176,7 @@ #define SIOCSETPFSYNC _IOW('i', 247, struct ifreq) #define SIOCGETPFSYNC _IOWR('i', 248, struct ifreq) -#define SIOCSETPFLOW _IOW('i', 249, struct ifreq) -#define SIOCGETPFLOW _IOWR('i', 250, struct ifreq) +#define SIOCSETPFLOW _IOW('i', 253, struct ifreq) +#define SIOCGETPFLOW _IOWR('i', 254, struct ifreq) #endif /* !_SYS_SOCKIO_H_ */ |