mirror of
https://github.com/opnsense/src.git
synced 2026-02-19 02:30:08 -05:00
Correct the READ/WRITE CDB direction definition.
Submitted by: John Cagle <john.cagle@hp.com>
This commit is contained in:
parent
24b648094d
commit
307e04602c
1 changed files with 2 additions and 2 deletions
|
|
@ -84,8 +84,8 @@ struct ciss_cdb
|
|||
#define CISS_CDB_ATTRIBUTE_AUTO_CONTINGENT 7
|
||||
u_int8_t direction:2;
|
||||
#define CISS_CDB_DIRECTION_NONE 0
|
||||
#define CISS_CDB_DIRECTION_READ 1
|
||||
#define CISS_CDB_DIRECTION_WRITE 2
|
||||
#define CISS_CDB_DIRECTION_WRITE 1
|
||||
#define CISS_CDB_DIRECTION_READ 2
|
||||
u_int16_t timeout; /* seconds */
|
||||
#define CISS_CDB_BUFFER_SIZE 16
|
||||
u_int8_t cdb[CISS_CDB_BUFFER_SIZE];
|
||||
|
|
|
|||
Loading…
Reference in a new issue