aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/sctp_peeloff.c
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2012-03-09 15:42:47 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2012-03-09 15:42:47 +0000
commitbd79f2ded1f5ddadeb160d5824fdf1392f0055fe (patch)
tree5a28fb449a34a0a80f89cb77b279e264769d445e /sys/netinet/sctp_peeloff.c
parentcaeb442fd29b7dc04efc912deaa34cba4c277cc1 (diff)
downloadsrc-bd79f2ded1f5ddadeb160d5824fdf1392f0055fe.tar.gz
src-bd79f2ded1f5ddadeb160d5824fdf1392f0055fe.zip
Fix a warning reported by bz@
MFC after: 3 days.
Notes
Notes: svn path=/head/; revision=232726
Diffstat (limited to 'sys/netinet/sctp_peeloff.c')
-rw-r--r--sys/netinet/sctp_peeloff.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/sctp_peeloff.c b/sys/netinet/sctp_peeloff.c
index 6debd8fd5de9..425e3e9fcf63 100644
--- a/sys/netinet/sctp_peeloff.c
+++ b/sys/netinet/sctp_peeloff.c
@@ -56,17 +56,17 @@ sctp_can_peel_off(struct socket *head, sctp_assoc_t assoc_id)
uint32_t state;
if (head == NULL) {
- SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_PEELOFF, EBADF);
+ SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_PEELOFF, EBADF);
return (EBADF);
}
if ((head->so_proto->pr_protocol != IPPROTO_SCTP) ||
(head->so_type != SOCK_SEQPACKET)) {
- SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_PEELOFF, EOPNOTSUPP);
+ SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_PEELOFF, EOPNOTSUPP);
return (EOPNOTSUPP);
}
inp = (struct sctp_inpcb *)head->so_pcb;
if (inp == NULL) {
- SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_PEELOFF, EFAULT);
+ SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_PEELOFF, EFAULT);
return (EFAULT);
}
stcb = sctp_findassociation_ep_asocid(inp, assoc_id, 1);