From dfb87d2239cfe0bdf64db7d0edfa51c4a9c61fd5 Mon Sep 17 00:00:00 2001 From: Nate Lawson 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(-) (limited to 'usr.sbin/burncd') diff --git a/usr.sbin/burncd/burncd.c b/usr.sbin/burncd/burncd.c index 9f3738ef566b..b60788bff58b 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.3