SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
15
sysutils/nomad/patches/patch-command_agent_host_unix_go
Normal file
15
sysutils/nomad/patches/patch-command_agent_host_unix_go
Normal 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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue