mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Expand length of pnpinfo and length fields since pccard pnpinfo can
easily be longer than 64 characters.
This commit is contained in:
parent
00e416592e
commit
085aa77164
1 changed files with 2 additions and 2 deletions
|
|
@ -45,8 +45,8 @@ struct devinfo_i_dev {
|
|||
char dd_name[DEVINFO_STRLEN];
|
||||
char dd_desc[DEVINFO_STRLEN];
|
||||
char dd_drivername[DEVINFO_STRLEN];
|
||||
char dd_pnpinfo[DEVINFO_STRLEN * 2];
|
||||
char dd_location[DEVINFO_STRLEN * 2];
|
||||
char dd_pnpinfo[DEVINFO_STRLEN * 4];
|
||||
char dd_location[DEVINFO_STRLEN * 4];
|
||||
uint32_t dd_devflags;
|
||||
uint16_t dd_flags;
|
||||
device_state_t dd_state;
|
||||
|
|
|
|||
Loading…
Reference in a new issue