diff options
author | Jan Wagner <waja@cyconet.org> | 2014-01-24 18:20:08 +0100 |
---|---|---|
committer | Jan Wagner <waja@cyconet.org> | 2014-01-24 18:20:08 +0100 |
commit | ccecba33a2b32e607b2d008a69a90f6532926374 (patch) | |
tree | 6aaac23a758d28285a8b6d98836d85ba9d184db7 /plugins/check_ntp_time.c | |
parent | c5dc81cd2889421115b4d33b959b0ff8e2df9f6c (diff) | |
download | monitoring-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_ntp_time.c b/plugins/check_ntp_time.c index f8564571..72dffbd8 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){ } else { /* finally, calculate the average offset */ for(i=0; i<servers[best_index].num_responses;i++){ - avg_offset+=servers[best_index].offset[j]; + avg_offset+=servers[best_index].offset[i]; } avg_offset/=servers[best_index].num_responses; } |