diff options
| author | Jörg Frings-Fürst <debian@jff.email> | 2023-02-16 10:20:08 +0100 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff.email> | 2023-02-16 10:20:08 +0100 | 
| commit | 778ebf8ee9cb22ea5727844333bcd5a6ee6bc0de (patch) | |
| tree | a754e785b286ed82b45fe4e50b980714ad80e0a7 /backend/sp15c-scsi.h | |
| parent | 7d8aac1f3634dc58785bec7acf097dd6bac8c394 (diff) | |
| parent | 32cb765f681299af226ca0520993cbe47ba5ecd0 (diff) | |
Merge branch 'release/debian/1.2.1-1'debian/1.2.1-1
Diffstat (limited to 'backend/sp15c-scsi.h')
| -rw-r--r-- | backend/sp15c-scsi.h | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/backend/sp15c-scsi.h b/backend/sp15c-scsi.h index 1d3e0a1..03fee55 100644 --- a/backend/sp15c-scsi.h +++ b/backend/sp15c-scsi.h @@ -209,9 +209,12 @@ static scsiblk inquiryB =  #define get_IN_response_format(in)         getbitfield(in + 0x03, 0x0f, 0)  #define IN_recognized                         0x02  #define get_IN_additional_length(in)       in[0x04] -#define get_IN_vendor(in, buf)             strncpy(buf, in + 0x08, 0x08) -#define get_IN_product(in, buf)            strncpy(buf, in + 0x10, 0x010) -#define get_IN_version(in, buf)            strncpy(buf, in + 0x20, 0x04) +#define get_IN_vendor(in, buf)             snprintf(buf, 0x08 + 1, "%.*s", \ +                                                    0x08, in + 0x08) +#define get_IN_product(in, buf)            snprintf(buf, 0x10 + 1, "%.*s", \ +                                                    0x10, in + 0x10) +#define get_IN_version(in, buf)            snprintf(buf, 0x04 + 1, "%.*s", \ +                                                    0x04, in + 0x20)  #define get_IN_color_mode(in)              getbitfield(in + 0x24, 0xf, 0)  #define get_IN_color_seq(in)               getbitfield(in + 0x24, 0x7, 4)  #define get_IN_adf(in)                     getbitfield(in + 0x24, 0x1, 7) | 
