Skip to content

Commit b94ab73

Browse files
committed
Merge pull request #11333 from benhurdelhey:ben-hurdelhey_data/fix-mount-setup-initial-userns-fallback
PiperOrigin-RevId: 713006567
2 parents 7aa4c49 + ffb7334 commit b94ab73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runsc/cmd/gofer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ func (g *Gofer) setupMounts(conf *config.Config, mounts []specs.Mount, root, pro
557557
// to open the mount, so let's try to open it in the
558558
// parent user namespace.
559559
var res container.OpenMountResult
560-
if err := goferToHostRPC.Call("goferRPC.OpenMount", &m, &res); err != nil {
560+
if err := goferToHostRPC.Call("goferToHostRPC.OpenMount", &m, &res); err != nil {
561561
return fmt.Errorf("opening %s: %w", m.Source, err)
562562
}
563563
srcFile = res.Files[0]

0 commit comments

Comments
 (0)