Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gofsutil_mount_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ func (fs *FS) rescanSCSIHost(_ context.Context, targets []string, lun string) er
}
errs := f.Close()
if errs != nil {
return err
return errs
}
}
return nil
Expand Down Expand Up @@ -390,7 +390,7 @@ func (fs *FS) rescanSCSIHost(_ context.Context, targets []string, lun string) er
}
errs := f.Close()
if errs != nil {
return err
return errs
}
}
return nil
Expand Down Expand Up @@ -663,7 +663,7 @@ func (fs *FS) issueLIPToAllFCHosts(_ context.Context) error {
}
errs := f.Close()
if errs != nil {
return err
return errs
}
}
return savedError
Expand Down