diff options
Diffstat (limited to 'cmds/lshal/TableEntry.cpp')
-rw-r--r-- | cmds/lshal/TableEntry.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cmds/lshal/TableEntry.cpp b/cmds/lshal/TableEntry.cpp index e8792a4307..f390850e01 100644 --- a/cmds/lshal/TableEntry.cpp +++ b/cmds/lshal/TableEntry.cpp @@ -96,8 +96,11 @@ std::string TableEntry::getField(TableColumnType type) const { std::string TableEntry::isReleased() const { static const std::string unreleased = Hash::hexString(Hash::kEmptyHash); - if (hash.empty() || hash == unreleased) { - return " "; // unknown or unreleased + if (hash.empty()) { + return "?"; + } + if (hash == unreleased) { + return "N"; // unknown or unreleased } return "Y"; // released } |