From 8dc94f1be5fd410461f08992c9a176e95ef36169 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Mon, 6 Dec 2021 13:55:54 -0500 Subject: Bump to containers/image v5.17.0 This resolves CVE-2021-41190 Signed-off-by: Matthew Heon --- .../github.com/mattn/go-isatty/isatty_solaris.go | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 vendor/github.com/mattn/go-isatty/isatty_solaris.go (limited to 'vendor/github.com/mattn/go-isatty/isatty_solaris.go') diff --git a/vendor/github.com/mattn/go-isatty/isatty_solaris.go b/vendor/github.com/mattn/go-isatty/isatty_solaris.go deleted file mode 100644 index bdd5c79a0..000000000 --- a/vendor/github.com/mattn/go-isatty/isatty_solaris.go +++ /dev/null @@ -1,22 +0,0 @@ -// +build solaris -// +build !appengine - -package isatty - -import ( - "golang.org/x/sys/unix" -) - -// IsTerminal returns true if the given file descriptor is a terminal. -// see: http://src.illumos.org/source/xref/illumos-gate/usr/src/lib/libbc/libc/gen/common/isatty.c -func IsTerminal(fd uintptr) bool { - var termio unix.Termio - err := unix.IoctlSetTermio(int(fd), unix.TCGETA, &termio) - return err == nil -} - -// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2 -// terminal. This is also always false on this environment. -func IsCygwinTerminal(fd uintptr) bool { - return false -} -- cgit v1.2.3-54-g00ecf