From 223608191ba3587b1e9f1e1257d482dc89c59709 Mon Sep 17 00:00:00 2001 From: Tim Gesthuizen Date: Thu, 6 Feb 2020 19:26:03 +0100 Subject: [PATCH] services: inputattach: Fix broken baud rate option * gnu/services/desktop.scm (inputattach-shepherd-service): Use "--baud" for setting the baud-rate. --- gnu/services/desktop.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 9dcdf38be1..1294d748ac 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -1070,7 +1070,7 @@ as expected."))) (match-lambda (($ type device baud-rate log-file) (let ((args (append (if baud-rate - (list "--baud-rate" (number->string baud-rate)) + (list "--baud" (number->string baud-rate)) '()) (list (string-append "--" type) device)))) -- 2.25.0