diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-08-01 00:54:08 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-08-01 00:54:08 +0900 |
| commit | f14e7255be2cf766a63f08e53f6e1cb48e4d17dc (patch) | |
| tree | acfd4ec1b9d87b989ad9f541a65aae5cfef16429 /container | |
| parent | a8a79a866469c281f5c15daa7b2bd1de91f1d99c (diff) | |
container/ops: use correct flags value in bind string
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container')
| -rw-r--r-- | container/ops.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/container/ops.go b/container/ops.go index 5122c183..85291da3 100644 --- a/container/ops.go +++ b/container/ops.go @@ -118,7 +118,7 @@ func (b *BindMountOp) String() string { if b.Source == b.Target { return fmt.Sprintf("%q flags %#x", b.Source, b.Flags) } - return fmt.Sprintf("%q on %q flags %#x", b.Source, b.Target, b.Flags&BindWritable) + return fmt.Sprintf("%q on %q flags %#x", b.Source, b.Target, b.Flags) } func init() { gob.Register(new(MountProcOp)) } |
