mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- Fix build on 10.0-i386
Reported by: pkg-fallout
This commit is contained in:
parent
2a6d08b7a5
commit
0d14d3a2d1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=334496
1 changed files with 23 additions and 0 deletions
23
sysutils/nfsping/files/patch-src__nfsping.c
Normal file
23
sysutils/nfsping/files/patch-src__nfsping.c
Normal file
|
@ -0,0 +1,23 @@
|
|||
--- ./src/nfsping.c.orig 2013-11-21 09:36:28.914158570 -0600
|
||||
+++ ./src/nfsping.c 2013-11-21 09:36:58.050495553 -0600
|
||||
@@ -84,9 +84,9 @@
|
||||
printf("%s : [%u], %03.2f ms (%03.2f avg, %.0f%% loss)\n", target->name, target->sent - 1, us / 1000.0, target->avg / 1000.0, loss);
|
||||
} else if (format == graphite) {
|
||||
if (prognum == MOUNTPROG) {
|
||||
- printf("%s.%s.mount.usec %lu %li\n", prefix, target->ndqf, us, now.tv_sec);
|
||||
+ printf("%s.%s.mount.usec %lu %li\n", prefix, target->ndqf, us, (long)now.tv_sec);
|
||||
} else {
|
||||
- printf("%s.%s.ping.usec %lu %li\n", prefix, target->ndqf, us, now.tv_sec);
|
||||
+ printf("%s.%s.ping.usec %lu %li\n", prefix, target->ndqf, us, (long)now.tv_sec);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -96,7 +96,7 @@
|
||||
/* send to stdout even though it could be considered an error, presumably these are being piped somewhere */
|
||||
/* stderr prints the errors themselves which can be discarded */
|
||||
if (format == graphite) {
|
||||
- printf("%s.%s.ping.lost 1 %li\n", prefix, target->name, now.tv_sec);
|
||||
+ printf("%s.%s.ping.lost 1 %li\n", prefix, target->name, (long)now.tv_sec);
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Reference in a new issue