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:
Jung-uk Kim 2007-08-28 00:09:12 +00:00
parent 262185e9d2
commit 8553cd622c

View File

@ -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