services: WPA Supplicant: Fix syntax error.
This is a followup to commit acce0a474c
. No
idea how these disappeared.. :-/
* gnu/services/networking.scm (wpa-supplicant-shepherd-service): Add missing
parens.
This commit is contained in:
parent
402e60859d
commit
3d472b5ee1
1 changed files with 2 additions and 2 deletions
|
@ -1064,10 +1064,10 @@ networking."))))
|
||||||
#~("-u")
|
#~("-u")
|
||||||
#~())
|
#~())
|
||||||
#$@(if interface
|
#$@(if interface
|
||||||
#~(string-append "-i" #$interface)
|
#~((string-append "-i" #$interface))
|
||||||
#~())
|
#~())
|
||||||
#$@(if config-file
|
#$@(if config-file
|
||||||
#~(string-append "-c" #$config-file)
|
#~((string-append "-c" #$config-file))
|
||||||
#~())
|
#~())
|
||||||
#$@extra-options)
|
#$@extra-options)
|
||||||
#:pid-file #$pid-file))
|
#:pid-file #$pid-file))
|
||||||
|
|
Reference in a new issue