diff options
author | bz <bz@FreeBSD.org> | 2008-12-17 13:00:18 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2008-12-17 13:00:18 +0000 |
commit | b1db56aa98b15cfd499cef9616516622f29ad0b4 (patch) | |
tree | 25d063d5e1e8efdb96e60a55d552b53db514c8d4 /sys/netinet | |
parent | ea0d9d2e9af995a203d1871d5aded293a98f5d68 (diff) | |
download | FreeBSD-src-b1db56aa98b15cfd499cef9616516622f29ad0b4.zip FreeBSD-src-b1db56aa98b15cfd499cef9616516622f29ad0b4.tar.gz |
Another step assimilating IPv[46] PCB code:
normalize IN6P_* compat flags usage to their equialent
INP_* counterpart.
Discussed with: rwatson
Reviewed by: rwatson
MFC after: 4 weeks
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/in_pcb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h index 0862c95..01636fe 100644 --- a/sys/netinet/in_pcb.h +++ b/sys/netinet/in_pcb.h @@ -441,7 +441,7 @@ void inp_4tuple_get(struct inpcb *inp, uint32_t *laddr, uint16_t *lp, #define IN6P_RECVIF INP_RECVIF #define IN6P_MTUDISC INP_MTUDISC #define IN6P_FAITH INP_FAITH -#define IN6P_CONTROLOPTS INP_CONTROLOPTS +#define IN6P_CONTROLOPTS INP_CONTROLOPTS /* * socket AF version is {newer than,or include} * actual datagram AF version |