cmd: Don't check for errno == 0

Maybe term.Restore's predecessor could return this, but the current
implementation never does.
This commit is contained in:
greatroar 2023-05-27 08:52:37 +02:00
parent 51dc80be5b
commit 8f1ca8fabe
1 changed files with 1 additions and 17 deletions

View File

@ -10,7 +10,6 @@ import (
"runtime"
"strconv"
"strings"
"syscall"
"time"
"github.com/restic/restic/internal/backend"
@ -146,21 +145,6 @@ func init() {
restoreTerminal()
}
// checkErrno returns nil when err is set to syscall.Errno(0), since this is no
// error condition.
func checkErrno(err error) error {
e, ok := err.(syscall.Errno)
if !ok {
return err
}
if e == 0 {
return nil
}
return err
}
func stdinIsTerminal() bool {
return term.IsTerminal(int(os.Stdin.Fd()))
}
@ -209,7 +193,7 @@ func restoreTerminal() {
if !isReadingPassword {
return code, nil
}
err := checkErrno(term.Restore(fd, state))
err := term.Restore(fd, state)
if err != nil {
fmt.Fprintf(os.Stderr, "unable to restore terminal state: %v\n", err)
}