diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2004-06-14 18:16:22 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2004-06-14 18:16:22 +0000 |
| commit | c0b99ffa021c0be74d6ab90a6eccfe511be8bb19 (patch) | |
| tree | 38ab74987dd7d2d27fad4ea4e4772c7d36baf7d4 /sys/netinet/tcp_usrreq.c | |
| parent | fb6dad913a34b899ddff899af697c0fc3176942e (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
| -rw-r--r-- | sys/netinet/tcp_usrreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index 89ddc7987c9b..fa959202023f 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -650,7 +650,7 @@ tcp_usr_send(struct socket *so, int flags, struct mbuf *m, if (inp == NULL) { /* * OOPS! we lost a race, the TCP session got reset after - * we checked SS_CANTSENDMORE, eg: while doing uiomove or a + * we checked SBS_CANTSENDMORE, eg: while doing uiomove or a * network interrupt in the non-splnet() section of sosend(). */ if (m) @@ -788,7 +788,7 @@ tcp_usr_rcvoob(struct socket *so, struct mbuf *m, int flags) COMMON_START(); if ((so->so_oobmark == 0 && - (so->so_state & SS_RCVATMARK) == 0) || + (so->so_rcv.sb_state & SBS_RCVATMARK) == 0) || so->so_options & SO_OOBINLINE || tp->t_oobflags & TCPOOB_HADDATA) { error = EINVAL; |
