guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: services: inputattach: Fix broken baud rate optio


From: guix-commits
Subject: branch master updated: services: inputattach: Fix broken baud rate option.
Date: Thu, 06 Feb 2020 22:51:46 -0500

This is an automated email from the git hooks/post-receive script.

iyzsong pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new daec54f  services: inputattach: Fix broken baud rate option.
daec54f is described below

commit daec54f062a703ac0e4e3b4361e5a0cf7309053a
Author: Tim Gesthuizen <address@hidden>
AuthorDate: Thu Feb 6 19:26:03 2020 +0100

    services: inputattach: Fix broken baud rate option.
    
    * gnu/services/desktop.scm (inputattach-shepherd-service): Use "--baud" for
    setting the baud-rate.
    
    Signed-off-by: 宋文武 <address@hidden>
---
 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 9dcdf38..1294d74 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))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]