mirror of
https://github.com/containers/podman.git
synced 2025-10-14 17:55:51 +08:00
14 lines
268 B
Go
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")
|
|
}
|