keyworrd: fix block device value for `type=`

Fixes: #127

Reported-by: Lennart Poettering lennart@poettering.net
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2017-06-15 11:51:26 -05:00
parent 469590a575
commit 5db2376250
2 changed files with 1 additions and 2 deletions

View File

@ -162,7 +162,7 @@ var (
if info.Mode()&os.ModeCharDevice != 0 {
return "type=char", nil
}
return "type=device", nil
return "type=block", nil
}
return emptyKV, nil
}

View File

@ -242,7 +242,6 @@ var (
// BsdKeywords is the set of keywords that is only in the upstream FreeBSD mtree
BsdKeywords = []Keyword{
"cksum",
"device",
"flags", // this one is really mostly BSD specific ...
"ignore",
"gid",