diff options
-rw-r--r-- | sys/cam/scsi/scsi_sg.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/cam/scsi/scsi_sg.c b/sys/cam/scsi/scsi_sg.c index de20731..09d30a6 100644 --- a/sys/cam/scsi/scsi_sg.c +++ b/sys/cam/scsi/scsi_sg.c @@ -304,10 +304,12 @@ sgregister(struct cam_periph *periph, void *arg) UID_ROOT, GID_OPERATOR, 0600, "%s%d", periph->periph_name, periph->unit_number); if (periph->unit_number < 26) { - (void)make_dev_alias(softc->dev, "sg%c", periph->unit_number + 'a'); + (void)make_dev_alias(softc->dev, "sg%c", + periph->unit_number + 'a'); } else { (void)make_dev_alias(softc->dev, "sg%c%c", - ((periph->unit_number / 26) - 1) + 'a', periph->unit_number + 'a'); + ((periph->unit_number / 26) - 1) + 'a', + (periph->unit_number % 26) + 'a'); } cam_periph_lock(periph); softc->dev->si_drv1 = periph; |