o add patch to fix problem with icmp header type control message

PR:		ports/84018
Submitted by:	Louis Mamakos <louie@transsys.com>
This commit is contained in:
Michael Landin 2005-07-26 10:22:10 +00:00
parent 795e596864
commit 3b5a53ccb2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=140138

View file

@ -0,0 +1,14 @@
$FreeBSD$
--- src/icmp.c.orig
+++ src/icmp.c
@@ -197,7 +197,7 @@
debug("checking CMSG...");
for (c = CMSG_FIRSTHDR(&msg); c; c = CMSG_NXTHDR(&msg, c)) {
debug("CMSG level: %i type: %i",c->cmsg_level,c->cmsg_type);
- if (c->cmsg_level != SOL_SOCKET || c->cmsg_type != SO_TIMESTAMP)
+ if (c->cmsg_level != SOL_SOCKET || c->cmsg_type != SCM_TIMESTAMP)
continue;
if (c->cmsg_len < CMSG_LEN(sizeof(struct timeval)))
continue;