Skip to content

Commit

Permalink
Update INQUIRY
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Dec 10, 2024
1 parent 359f7ed commit b2a0c5a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cpp/s2pdump/s2pdump_executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ void S2pDumpExecutor::RequestSense() const
bool S2pDumpExecutor::Inquiry(span<uint8_t> buffer)
{
vector<uint8_t> cdb(6);
cdb[3] = static_cast<uint8_t>(buffer.size() >> 8);
cdb[4] = static_cast<uint8_t>(buffer.size());

return !initiator_executor->Execute(scsi_command::inquiry, cdb, buffer, static_cast<int>(buffer.size()));
Expand Down

0 comments on commit b2a0c5a

Please sign in to comment.