mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
- fix the patch, we need the time in milliseconds not in micorseconds
- noted by Erik Sejr, and on the check-mk list Feature safe: yes
This commit is contained in:
parent
3ac608284d
commit
36e2db9042
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=306945
@ -3,6 +3,7 @@
|
||||
|
||||
PORTNAME= mk-livestatus
|
||||
PORTVERSION= 1.2.0p3
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= net-mgmt
|
||||
MASTER_SITES= http://mathias-kettner.de/download/ \
|
||||
LOCAL/ohauer
|
||||
|
@ -55,9 +55,9 @@
|
||||
end.millitm,
|
||||
+#else
|
||||
+ (int)start.tv_sec,
|
||||
+ start.tv_usec,
|
||||
+ start.tv_usec / 1000,
|
||||
+ (int)end.tv_sec,
|
||||
+ end.tv_usec,
|
||||
+ end.tv_usec / 1000,
|
||||
+#endif
|
||||
return_code,
|
||||
output);
|
||||
|
Loading…
Reference in New Issue
Block a user