summaryrefslogtreecommitdiffstats
path: root/usr.sbin/burncd
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2002-10-26 23:32:35 +0000
committernjl <njl@FreeBSD.org>2002-10-26 23:32:35 +0000
commit588d4313cdf4c89a2bb7466afd610e848c95d7e7 (patch)
treea8dbf58986dc51ce7af830f9894be06918a6f0bb /usr.sbin/burncd
parent3eea619b0f143612e50c6d91bb28cec20f55d4a1 (diff)
downloadFreeBSD-src-588d4313cdf4c89a2bb7466afd610e848c95d7e7.zip
FreeBSD-src-588d4313cdf4c89a2bb7466afd610e848c95d7e7.tar.gz
Convert speed into KB/s. This was missed by the previous commit to this file.
MFC after: 3 weeks
Diffstat (limited to 'usr.sbin/burncd')
-rw-r--r--usr.sbin/burncd/burncd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/burncd/burncd.c b/usr.sbin/burncd/burncd.c
index 9f3738e..b60788b 100644
--- a/usr.sbin/burncd/burncd.c
+++ b/usr.sbin/burncd/burncd.c
@@ -119,7 +119,7 @@ main(int argc, char **argv)
if (strcasecmp("max", optarg) == 0)
speed = CDR_MAX_SPEED;
else
- speed = atoi(optarg);
+ speed = atoi(optarg) * 177;
if (speed <= 0)
errx(EX_USAGE, "Invalid speed: %s", optarg);
break;
OpenPOWER on IntegriCloud