Files
podman/pkg/domain/infra/abi/play_unsupported.go
Matt Souza 090304a054 lint: reenable revive unused-parameter check
Signed-off-by: Matt Souza <medsouz99@gmail.com>
2025-10-01 10:42:08 -04:00

14 lines
268 B
Go

//go:build !linux && !remote
package abi
import (
"errors"
"os"
)
// openSymlinkPath is not supported on this platform.
func openSymlinkPath(_ *os.File, _ string, _ int) (*os.File, error) {
return nil, errors.New("cannot safely open symlink on this platform")
}