diff options
author | Michael Tuexen <tuexen@FreeBSD.org> | 2012-10-29 20:44:29 +0000 |
---|---|---|
committer | Michael Tuexen <tuexen@FreeBSD.org> | 2012-10-29 20:44:29 +0000 |
commit | 24d4ce2c8752645a2f8ce5d9aac9e4032c4fd65f (patch) | |
tree | 9de9998c5fa0505f8bf1beea55e61303ea8415bf /sys/netinet/sctp_output.c | |
parent | 09c1c8563afd738ba375a9e6536401d77493abbc (diff) | |
download | src-test2-24d4ce2c8752645a2f8ce5d9aac9e4032c4fd65f.tar.gz src-test2-24d4ce2c8752645a2f8ce5d9aac9e4032c4fd65f.zip |
Notes
Diffstat (limited to 'sys/netinet/sctp_output.c')
-rw-r--r-- | sys/netinet/sctp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c index aad99ce4b27d..63be5eee8933 100644 --- a/sys/netinet/sctp_output.c +++ b/sys/netinet/sctp_output.c @@ -3981,9 +3981,9 @@ sctp_lowlevel_chunk_output(struct sctp_inpcb *inp, } if ((nofragment_flag) && (port == 0)) { ip->ip_off = htons(IP_DF); - } else + } else { ip->ip_off = htons(0); - + } /* FreeBSD has a function for ip_id's */ ip->ip_id = ip_newid(); |