mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-27 11:32:21 +02: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:
committed by
Ludovic Courtès
parent
66d8dc3d74
commit
5a6e27bfbd
@@ -159,7 +159,7 @@
|
||||
(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
|
||||
|
||||
Reference in New Issue
Block a user