summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gesthuizen <tim.gesthuizen@yahoo.de>2020-02-06 19:26:03 +0100
committer宋文武 <iyzsong@member.fsf.org>2020-02-07 11:51:02 +0800
commitdaec54f062a703ac0e4e3b4361e5a0cf7309053a (patch)
tree2cc9423f5b3d6879ad3b870ac9d38ee5f970b617
parentf83d07f7778b699d46741a5667113342f5f0a737 (diff)
downloadpatches-daec54f062a703ac0e4e3b4361e5a0cf7309053a.tar
patches-daec54f062a703ac0e4e3b4361e5a0cf7309053a.tar.gz
services: inputattach: Fix broken baud rate option.
* gnu/services/desktop.scm (inputattach-shepherd-service): Use "--baud" for setting the baud-rate. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
-rw-r--r--gnu/services/desktop.scm2
1 files changed, 1 insertions, 1 deletions
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
(($ <inputattach-configuration> 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))))