1. NAME

sanitize_inquiry_string - remove non-graphical chars from an INQUIRY result string

2. SYNOPSIS

void sanitize_inquiry_string(unsigned char *  s , int  len );

3. ARGUMENTS

s
    INQUIRY result string to sanitize

len
    length of the string

4. DESCRIPTION

The SCSI spec says that INQUIRY vendor, product, and revision strings must consist entirely of graphic ASCII characters, padded on the right with spaces. Since not all devices obey this rule, we will replace non-graphic or non-ASCII characters with spaces. Exception: a NUL character is interpreted as a string terminator, so all the following characters are set to spaces.

5. AUTHORS

James Bottomley <>
    Author.

Rob Landley <>
    Author.

6. COPYRIGHT