Files
podman/vendor/github.com/containers/buildah/copier/mknod_int.go
Paul Holzinger 83a0299309 vendor: update buildah to latest
Includes a fix for CVE-2024-9407

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2024-10-02 18:04:39 +02:00

12 lines
178 B
Go

//go:build !windows && !freebsd
package copier
import (
"golang.org/x/sys/unix"
)
func mknod(path string, mode uint32, dev int) error {
return unix.Mknod(path, mode, dev)
}