aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> 2007-04-02 07:32:30 +0000
committerGravatar Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> 2007-04-02 07:32:30 +0000
commit3315c3f25e3398e766da7ec72589a000be7f9f9d (patch)
treef46fd3324fb08de93403bc58ef62b9706aca44fe /plugins
parent7856e1ba2b456c9896187230d1bd67a5fdab8942 (diff)
downloadmonitoring-plugins-3315c3f25e3398e766da7ec72589a000be7f9f9d.tar.gz
Fix byte order in verbose logging
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1671 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/check_ntp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_ntp.c b/plugins/check_ntp.c
index 8b49928a..99fa9a2e 100644
--- a/plugins/check_ntp.c
+++ b/plugins/check_ntp.c
@@ -593,7 +593,7 @@ double jitter_request(const char *host, int *status){
/* get to the float value */
if(verbose) {
- printf("parsing jitter from peer %.2x: ", peers[i].assoc);
+ printf("parsing jitter from peer %.2x: ", ntohs(peers[i].assoc));
}
startofvalue = strchr(req.data, '=');
if(startofvalue != NULL) startofvalue++;