Skip to content
Snippets Groups Projects
Commit 60cebe7b authored by Steven Murray's avatar Steven Murray
Browse files

Renamed TapeLsItem::encryption_key to encryption_key_name

parent 7ee55887
No related branches found
No related tags found
No related merge requests found
......@@ -814,7 +814,7 @@ void TextFormatter::print(const TapeLsItem &tals_item) {
tals_item.logical_library(),
tals_item.tapepool(),
tals_item.vo(),
tals_item.encryption_key(),
tals_item.encryption_key_name(),
dataSizeToStr(tals_item.capacity()),
dataSizeToStr(tals_item.occupancy()),
tals_item.last_fseq(),
......
......@@ -103,7 +103,7 @@ int TapeLsStream::fillBuffer(XrdSsiPb::OStreamBuffer<Data> *streambuf) {
tape_item->set_logical_library(tape.logicalLibraryName);
tape_item->set_tapepool(tape.tapePoolName);
tape_item->set_vo(tape.vo);
tape_item->set_encryption_key((bool)tape.encryptionKeyName ? tape.encryptionKeyName.value() : "-");
tape_item->set_encryption_key_name((bool)tape.encryptionKeyName ? tape.encryptionKeyName.value() : "-");
tape_item->set_capacity(tape.capacityInBytes);
tape_item->set_occupancy(tape.dataOnTapeInBytes);
tape_item->set_last_fseq(tape.lastFSeq);
......
Subproject commit e40c45028c42a208cfd820fb8eec598314a35c23
Subproject commit f26ceb39dc778055405a276e626b7d8f01404fa5
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment