mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Fix "camcontrol timestamp -s" with LTO-7 drives
The length of the scsi_set_timestamp_parameters struct was incorrect. LTO-5 drives don't care, but LTO-7 drives do. Reviewed by: Sam Klopsch MFC after: 2 weeks Sponsored by: Spectra Logic Corp
This commit is contained in:
parent
04108b8b21
commit
c9bd03d87f
1 changed files with 1 additions and 1 deletions
|
|
@ -3039,7 +3039,7 @@ struct scsi_set_timestamp_parameters
|
|||
{
|
||||
uint8_t reserved1[4];
|
||||
uint8_t timestamp[6];
|
||||
uint8_t reserved2[4];
|
||||
uint8_t reserved2[2];
|
||||
};
|
||||
|
||||
struct scsi_report_timestamp_parameter_data
|
||||
|
|
|
|||
Loading…
Reference in a new issue