From 588d4313cdf4c89a2bb7466afd610e848c95d7e7 Mon Sep 17 00:00:00 2001 From: njl Date: Sat, 26 Oct 2002 23:32:35 +0000 Subject: Convert speed into KB/s. This was missed by the previous commit to this file. MFC after: 3 weeks --- usr.sbin/burncd/burncd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.1