mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
Move speed units conversion to right before it is used. This catches the
case when the -s option is not used.
This commit is contained in:
parent
eb87c5a73a
commit
cfe6d7e913
1 changed files with 2 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ main(int argc, char **argv)
|
|||
if (strcasecmp("max", optarg) == 0)
|
||||
speed = CDR_MAX_SPEED;
|
||||
else
|
||||
speed = atoi(optarg) * 177;
|
||||
speed = atoi(optarg);
|
||||
if (speed <= 0)
|
||||
errx(EX_USAGE, "Invalid speed: %s", optarg);
|
||||
break;
|
||||
|
|
@ -148,6 +148,7 @@ main(int argc, char **argv)
|
|||
if (ioctl(fd, CDRIOCGETBLOCKSIZE, &saved_block_size) < 0)
|
||||
err(EX_IOERR, "ioctl(CDRIOCGETBLOCKSIZE)");
|
||||
|
||||
speed *= 177;
|
||||
if (ioctl(fd, CDRIOCWRITESPEED, &speed) < 0)
|
||||
err(EX_IOERR, "ioctl(CDRIOCWRITESPEED)");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue