summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanijel Tasov <data@consol.de>2023-09-25 07:49:11 (GMT)
committerDanijel Tasov <m@rbfh.de>2023-09-25 16:23:54 (GMT)
commit3f0cc2533c21e0ce4c1975eac6146d758275a564 (patch)
treefa5c9ef286c42c25574d65dbb9205d05c3e9db90
parent9387e21de7b66a44f2b8a5f907124afdcf7b88a8 (diff)
downloadmonitoring-plugins-3f0cc2533c21e0ce4c1975eac6146d758275a564.tar.gz
Fix compile errors
Signed-off-by: Danijel Tasov <m@rbfh.de>
-rw-r--r--plugins-root/check_icmp.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c
index 18eed74..d1fe5b1 100644
--- a/plugins-root/check_icmp.c
+++ b/plugins-root/check_icmp.c
@@ -991,17 +991,17 @@ wait_for_reply(int sock, u_int t)
991 if (jitter_tmp > host->jitter_max) 991 if (jitter_tmp > host->jitter_max)
992 host->jitter_max=jitter_tmp; 992 host->jitter_max=jitter_tmp;
993 } 993 }
994 994
995 /* Check if packets in order */ 995 /* Check if packets in order */
996 if (host->last_icmp_seq >= icp.icmp_seq) 996 if (host->last_icmp_seq >= packet.icp->icmp_seq)
997 host->order_status=STATE_CRITICAL; 997 host->order_status=STATE_CRITICAL;
998 } 998 }
999 host->last_tdiff=tdiff; 999 host->last_tdiff=tdiff;
1000 1000
1001 host->last_icmp_seq=icp.icmp_seq; 1001 host->last_icmp_seq=packet.icp->icmp_seq;
1002 1002
1003 //printf("%d tdiff %d host->jitter %u host->last_tdiff %u\n", icp.icmp_seq, tdiff, host->jitter, host->last_tdiff); 1003 //printf("%d tdiff %d host->jitter %u host->last_tdiff %u\n", icp.icmp_seq, tdiff, host->jitter, host->last_tdiff);
1004 1004
1005 host->time_waited += tdiff; 1005 host->time_waited += tdiff;
1006 host->icmp_recv++; 1006 host->icmp_recv++;
1007 icmp_recv++; 1007 icmp_recv++;
@@ -1596,8 +1596,6 @@ add_target_ip(char *arg, struct sockaddr_storage *in)
1596 } 1596 }
1597 1597
1598 /* fill out the sockaddr_in struct */ 1598 /* fill out the sockaddr_in struct */
1599 host->saddr_in.sin_family = AF_INET;
1600 host->saddr_in.sin_addr.s_addr = in->s_addr;
1601 host->rtmin = INFINITY; 1599 host->rtmin = INFINITY;
1602 host->rtmax = 0; 1600 host->rtmax = 0;
1603 host->jitter=0; 1601 host->jitter=0;