Code

Fix byte order in verbose logging
[nagiosplug.git] / plugins / check_ntp.c
index 8b49928abaf5431f9fef2c90d38db0adbe43ae9c..99fa9a2eb9225f6ba6de760b6b27e685b3d22e85 100644 (file)
@@ -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++;