Skip to content

Commit

Permalink
Use used_fs, not detected_fs
Browse files Browse the repository at this point in the history
  • Loading branch information
shundhammer committed Sep 15, 2016
1 parent f1149ff commit 2f1b5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Storage.rb
Expand Up @@ -1366,9 +1366,9 @@ def volumeMap(vinfo, p)
Ops.set(p, "size_k", vinfo.sizeK)
fs = toSymbol(FileSystems.conv_fs, vinfo.fs)
Ops.set(p, "used_fs", fs) if fs != :unknown
Ops.set(p, "format", true) if vinfo.format && fs != :unknown
fs = toSymbol(FileSystems.conv_fs, vinfo.detected_fs)
Ops.set(p, "detected_fs", fs)
Ops.set(p, "format", true) if vinfo.format && fs != :unknown
Ops.set(p, "create", true) if vinfo.create
tmp = vinfo.mount
if !Builtins.isempty(tmp)
Expand Down

0 comments on commit 2f1b5ce

Please sign in to comment.