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.
master
Marius Bakke 2018-10-19 03:03:05 +02:00
parent 402e60859d
commit 3d472b5ee1
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 2 additions and 2 deletions

View File

@ -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))