mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
services: dovecot: Fix serialization of a free-form-args arguments.
* gnu/services/mail.scm (serialize-free-form-args): Change destination and return a string containing the formated text. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
66d8dc3d74
commit
5a6e27bfbd
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ (define (free-form-args? val)
|
|||
(define (serialize-free-form-args field-name val)
|
||||
(serialize-field field-name
|
||||
(string-join
|
||||
(map (match-lambda ((k . v) (format #t "~a=~a" k v))) val)
|
||||
(map (match-lambda ((k . v) (format #f "~a=~a" k v))) val)
|
||||
" ")))
|
||||
|
||||
(define-configuration dict-configuration
|
||||
|
|
Loading…
Reference in a new issue