Fix off-by-two errors.
Both WWNN and WWPN are 64-bit unsigned integers and they are prefixed with "0x", which requires two more bytes each. Submitted by: Danny Braniss (danny at cs dot huji dot ac dot il) via Matthew Jacob (lydianconcepts at gmail dot com) Approved by: re (bmah) MFC after: 3 days
This commit is contained in:
parent
262185e9d2
commit
8553cd622c
@ -184,8 +184,8 @@ struct isposinfo {
|
||||
const struct firmware * fw;
|
||||
union {
|
||||
struct {
|
||||
char wwnn[17];
|
||||
char wwpn[17];
|
||||
char wwnn[19];
|
||||
char wwpn[19];
|
||||
} fc;
|
||||
} sysctl_info;
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user