Fix error in previous commit - the style fix changed flag name without

changing references to the flag
This commit is contained in:
Kip Macy 2007-12-13 01:24:20 +00:00
parent 1f0598ffe0
commit 0005682030
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174569

View File

@ -38,7 +38,7 @@
#define SC_DROP 2
#define tp_offload(tp) ((tp)->t_flags & TF_TOE)
#define SO_OFFLOADABLE(so) ((so->so_options & SO_NOOFFLOAD) == 0)
#define SO_OFFLOADABLE(so) ((so->so_options & SO_NO_OFFLOAD) == 0)
int ofld_connect(struct socket *so, struct sockaddr *nam);
int ofld_can_offload(struct tcpcb *tp, struct sockaddr *nam);