summaryrefslogtreecommitdiffstats
path: root/plugins/check_ntp_time.c
diff options
context:
space:
mode:
authorJan Wagner <waja@cyconet.org>2014-01-24 17:20:08 (GMT)
committerJan Wagner <waja@cyconet.org>2014-01-24 17:20:08 (GMT)
commitccecba33a2b32e607b2d008a69a90f6532926374 (patch)
tree6aaac23a758d28285a8b6d98836d85ba9d184db7 /plugins/check_ntp_time.c
parentc5dc81cd2889421115b4d33b959b0ff8e2df9f6c (diff)
downloadmonitoring-plugins-ccecba33a2b32e607b2d008a69a90f6532926374.tar.gz
Fixing bug in average calculation (Submitted by Lars)
The more important change: A fix for a bug which caused the check_ntp_time and check_ntp_time check to always take the first response from ntp and not the avarage since "j" is not increased anywhere. "i" should be used there instead. Partly Closes #956 and Closes #1166 Closes: #1089
Diffstat (limited to 'plugins/check_ntp_time.c')
-rw-r--r--plugins/check_ntp_time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_ntp_time.c b/plugins/check_ntp_time.c
index f856457..72dffbd 100644
--- a/plugins/check_ntp_time.c
+++ b/plugins/check_ntp_time.c
@@ -428,7 +428,7 @@ double offset_request(const char *host, int *status){
428 } else { 428 } else {
429 /* finally, calculate the average offset */ 429 /* finally, calculate the average offset */
430 for(i=0; i<servers[best_index].num_responses;i++){ 430 for(i=0; i<servers[best_index].num_responses;i++){
431 avg_offset+=servers[best_index].offset[j]; 431 avg_offset+=servers[best_index].offset[i];
432 } 432 }
433 avg_offset/=servers[best_index].num_responses; 433 avg_offset/=servers[best_index].num_responses;
434 } 434 }