storj/storage/filestore/error.go
Egon Elbre 10372afbe4 ci: fix lint errors
Change-Id: Ib5893440807811f77175ccd347aa3f8ca9cccbdf
2021-05-17 13:37:31 +00:00

26 lines
484 B
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package filestore
import (
"errors"
"os"
)
// underlyingError returns the underlying error for known os error types.
func underlyingError(err error) error {
var perr *os.PathError
var lerr *os.LinkError
var serr *os.SyscallError
switch {
case errors.As(err, &perr):
return perr.Err
case errors.As(err, &lerr):
return lerr.Err
case errors.As(err, &serr):
return serr.Err
}
return err
}