diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-03-27 06:53:57 +0000 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-03-27 06:53:57 +0000 |
commit | 223da2af43da2ab67f175053ce29d88fdddf6c00 (patch) | |
tree | c04929eebaedf4aca3b12fde6f32062540a46173 /plugins-root | |
parent | ddd8e7e22e01a94326696d0e30a704d74c1a2f38 (diff) | |
download | monitoring-plugins-223da2af43da2ab67f175053ce29d88fdddf6c00.tar.gz |
Fix bug #1494629 - check_icmp fails after some time on FreeBSD
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1650 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-root')
-rw-r--r-- | plugins-root/check_icmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index 7a23e05a..7e3b00f3 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c @@ -395,7 +395,8 @@ main(int argc, char **argv) environ = NULL; /* use the pid to mark packets as ours */ - pid = getpid(); + /* Some systems have 32-bit pid_t so mask off only 16 bits */ + pid = getpid() & 0xffff; /* printf("pid = %u\n", pid); */ /* get calling name the old-fashioned way for portability instead |