Fix byte order in verbose logging

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1671 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
Thomas Guyot-Sionnest 2007-04-02 07:32:30 +00:00
parent 7856e1ba2b
commit 3315c3f25e

View 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++;