fortify/parse: omit try fd fallthrough message
This reduces noise in verbose output. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
parent
3dd4ff29c8
commit
a9adcd914b
5
parse.go
5
parse.go
@ -50,9 +50,12 @@ func tryPath(name string) (config *fst.Config) {
|
|||||||
|
|
||||||
func tryFd(name string) io.ReadCloser {
|
func tryFd(name string) io.ReadCloser {
|
||||||
if v, err := strconv.Atoi(name); err != nil {
|
if v, err := strconv.Atoi(name); err != nil {
|
||||||
fmsg.Verbosef("name cannot be interpreted as int64: %v", err)
|
if !errors.Is(err, strconv.ErrSyntax) {
|
||||||
|
fmsg.Verbosef("name cannot be interpreted as int64: %v", err)
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
} else {
|
} else {
|
||||||
|
fmsg.Verbosef("trying config stream from %d", v)
|
||||||
fd := uintptr(v)
|
fd := uintptr(v)
|
||||||
if _, _, errno := syscall.Syscall(syscall.SYS_FCNTL, fd, syscall.F_GETFD, 0); errno != 0 {
|
if _, _, errno := syscall.Syscall(syscall.SYS_FCNTL, fd, syscall.F_GETFD, 0); errno != 0 {
|
||||||
if errors.Is(errno, syscall.EBADF) {
|
if errors.Is(errno, syscall.EBADF) {
|
||||||
|
Loading…
Reference in New Issue
Block a user