Browse Source

Set vendor/model max length to 128 (32 was not enough)

master
Andrea Luzzardi 17 years ago
parent
commit
d21a12362e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      pam_usb/src/conf.h

+ 2
- 2
pam_usb/src/conf.h View File

@ -31,8 +31,8 @@
typedef struct pusb_device
{
char name[32];
char vendor[32];
char model[32];
char vendor[128];
char model[128];
char serial[128];
char volume_uuid[128];
} t_pusb_device;


Loading…
Cancel
Save