opnsense-ports/net/apinger/files/patch-src_icmp.c
Franco Fichtner b2fe183f08 net/apinger: sync with upstream
Taken from: FreeBSD
2016-05-22 12:24:00 +02:00

11 lines
469 B
C

--- src/icmp.c.orig 2002-12-19 08:24:33 UTC
+++ src/icmp.c
@@ -197,7 +197,7 @@ socklen_t sl;
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;