guix-commits
[Top][All Lists]
Advanced

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

01/04: services: WPA Supplicant: Fix syntax error.


From: Marius Bakke
Subject: 01/04: services: WPA Supplicant: Fix syntax error.
Date: Thu, 18 Oct 2018 21:20:47 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 3d472b5ee1a301a110087ebc08e8dcea8c3c0710
Author: Marius Bakke <address@hidden>
Date:   Fri Oct 19 03:03:05 2018 +0200

    services: WPA Supplicant: Fix syntax error.
    
    This is a followup to commit acce0a474c1493ab18912bc46285248e4ccb0314.  No
    idea how these disappeared.. :-/
    
    * gnu/services/networking.scm (wpa-supplicant-shepherd-service): Add missing
    parens.
---
 gnu/services/networking.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm
index 61a0e97..b764cde 100644
--- a/gnu/services/networking.scm
+++ b/gnu/services/networking.scm
@@ -1064,10 +1064,10 @@ networking."))))
                                    #~("-u")
                                    #~())
                             #$@(if interface
-                                   #~(string-append "-i" #$interface)
+                                   #~((string-append "-i" #$interface))
                                    #~())
                             #$@(if config-file
-                                   #~(string-append "-c" #$config-file)
+                                   #~((string-append "-c" #$config-file))
                                    #~())
                             address@hidden)
                       #:pid-file #$pid-file))



reply via email to

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