aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_ntp.c
diff options
context:
space:
mode:
authorGravatar Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> 2007-04-03 01:31:25 +0000
committerGravatar Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> 2007-04-03 01:31:25 +0000
commitfd440b64a6aeea6dd27811b98db7192b9c8259a4 (patch)
tree3e89d05abd8824a8fdca33def08ff6dcef74882c /plugins/check_ntp.c
parentdcbf7bdf6b67a41e749271f60b4ee0f1f34abc34 (diff)
downloadmonitoring-plugins-fd440b64a6aeea6dd27811b98db7192b9c8259a4.tar.gz
Temporary fix for jitter calculation
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1674 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_ntp.c')
-rw-r--r--plugins/check_ntp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/check_ntp.c b/plugins/check_ntp.c
index 8a08af50..cf63eea6 100644
--- a/plugins/check_ntp.c
+++ b/plugins/check_ntp.c
@@ -475,7 +475,10 @@ double offset_request(const char *host, int *status){
}
/* cleanup */
- for(j=0; j<num_hosts; j++){ close(socklist[j]); }
+ /* FIXME: Not closing the socket to avoid re-use of the local port
+ * which can cause old NTP packets to be read instead of NTP control
+ * pactets in jitter_request(). THERE MUST BE ANOTHER WAY...
+ * for(j=0; j<num_hosts; j++){ close(socklist[j]); } */
free(socklist);
free(ufds);
free(servers);