Merge pull request #1544 from mlaventure/fix-device-from-path

Fix condition to detect device type in DeviceFromPath
This commit is contained in:
Mrunal Patel 2017-08-04 17:36:57 -07:00 committed by GitHub
commit 135b9992b3
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@ func DeviceFromPath(path, permissions string) (*configs.Device, error) {
mode = stat.Mode
)
switch {
case mode&unix.S_IFBLK != 0:
case mode&unix.S_IFBLK == unix.S_IFBLK:
devType = 'b'
case mode&unix.S_IFCHR != 0:
case mode&unix.S_IFCHR == unix.S_IFCHR:
devType = 'c'
default:
return nil, ErrNotADevice