SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,15 @@
Index: command/agent/host/unix.go
--- command/agent/host/unix.go.orig
+++ command/agent/host/unix.go
@@ -64,9 +64,9 @@ func makeDf(path string) (*df, error) {
}
func (d *df) total() uint64 {
- return d.s.Blocks * uint64(d.s.Bsize)
+ return d.s.F_blocks * uint64(d.s.F_bsize)
}
func (d *df) available() uint64 {
- return d.s.Bavail * uint64(d.s.Bsize)
+ return uint64(d.s.F_bavail) * uint64(d.s.F_bsize)
}