mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-01-26 00:49:38 +07:00
scsi_id: --reformat_serial - use udev_util_replace_whitespace()
This commit is contained in:
parent
b25a94549c
commit
a8916c3400
@ -517,31 +517,6 @@ static int set_inq_values(struct udev *udev, struct scsi_id_device *dev_scsi, co
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* format_serial: replace to whitespaces by underscores for calling
|
||||
* programs that use the serial for device naming (multipath, Suse
|
||||
* naming, etc...)
|
||||
*/
|
||||
static void format_serial(char *serial)
|
||||
{
|
||||
char *p = serial, *q;
|
||||
|
||||
q = p;
|
||||
while (*p != '\0') {
|
||||
if (isspace(*p)) {
|
||||
if (q > serial && q[-1] != '_') {
|
||||
*q = '_';
|
||||
q++;
|
||||
}
|
||||
} else {
|
||||
*q = *p;
|
||||
q++;
|
||||
}
|
||||
p++;
|
||||
}
|
||||
*q = '\0';
|
||||
}
|
||||
|
||||
/*
|
||||
* scsi_id: try to get an id, if one is found, printf it to stdout.
|
||||
* returns a value passed to exit() - 0 if printed an id, else 1.
|
||||
@ -595,8 +570,16 @@ static int scsi_id(struct udev *udev, char *maj_min_dev)
|
||||
retval = 1;
|
||||
goto out;
|
||||
}
|
||||
if (reformat_serial)
|
||||
format_serial(dev_scsi.serial);
|
||||
|
||||
if (reformat_serial) {
|
||||
char serial_str[MAX_SERIAL_LEN];
|
||||
|
||||
udev_util_replace_whitespace(dev_scsi.serial, serial_str, sizeof(serial_str));
|
||||
udev_util_replace_chars(serial_str, NULL);
|
||||
printf("%s\n", serial_str);
|
||||
goto out;
|
||||
}
|
||||
|
||||
printf("%s\n", dev_scsi.serial);
|
||||
out:
|
||||
return retval;
|
||||
|
@ -457,11 +457,8 @@ static int prepend_vendor_model(struct udev *udev,
|
||||
int ind;
|
||||
|
||||
strncpy(serial, dev_scsi->vendor, VENDOR_LENGTH);
|
||||
ind = strlen(serial) - 1;
|
||||
|
||||
strncat(serial, dev_scsi->model, MODEL_LENGTH);
|
||||
ind = strlen(serial) - 1;
|
||||
ind++;
|
||||
ind = strlen(serial);
|
||||
|
||||
/*
|
||||
* This is not a complete check, since we are using strncat/cpy
|
||||
@ -773,7 +770,7 @@ static int do_scsi_page80_inquiry(struct udev *udev,
|
||||
len = 1 + VENDOR_LENGTH + MODEL_LENGTH + buf[3];
|
||||
if (max_len < len) {
|
||||
info(udev, "%s: length %d too short - need %d\n",
|
||||
dev_scsi->kernel, max_len, len);
|
||||
dev_scsi->kernel, max_len, len);
|
||||
return 1;
|
||||
}
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user