summaryrefslogtreecommitdiffstats
path: root/plugins-root/check_icmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins-root/check_icmp.c')
-rw-r--r--plugins-root/check_icmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c
index 7a23e05..7e3b00f 100644
--- a/plugins-root/check_icmp.c
+++ b/plugins-root/check_icmp.c
@@ -395,7 +395,8 @@ main(int argc, char **argv)
395 environ = NULL; 395 environ = NULL;
396 396
397 /* use the pid to mark packets as ours */ 397 /* use the pid to mark packets as ours */
398 pid = getpid(); 398 /* Some systems have 32-bit pid_t so mask off only 16 bits */
399 pid = getpid() & 0xffff;
399 /* printf("pid = %u\n", pid); */ 400 /* printf("pid = %u\n", pid); */
400 401
401 /* get calling name the old-fashioned way for portability instead 402 /* get calling name the old-fashioned way for portability instead