summary refs log tree commit diff
path: root/gnu/services
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2018-10-19 03:03:05 +0200
committerMarius Bakke <mbakke@fastmail.com>2018-10-19 03:18:22 +0200
commit3d472b5ee1a301a110087ebc08e8dcea8c3c0710 (patch)
treed76c087c73b44366b13093f75cf756ba2784813b /gnu/services
parent402e60859da609e95d16a04a253977da88f4077e (diff)
downloadguix-3d472b5ee1a301a110087ebc08e8dcea8c3c0710.tar.gz
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.
Diffstat (limited to 'gnu/services')
-rw-r--r--gnu/services/networking.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm
index 61a0e975c7..b764cde5ac 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))
                                    #~())
                             #$@extra-options)
                       #:pid-file #$pid-file))