all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Reily Siegel <mail@reilysiegel.com>
To: 65582@debbugs.gnu.org
Subject: [bug#65582] [PATCH] services: vpn: Fix broken format string for wireguard dns.
Date: Mon, 28 Aug 2023 11:11:23 -0400	[thread overview]
Message-ID: <5c2f7432277e673fc725649bc90348410423f931.1693236027.git.mail@reilysiegel.com> (raw)


* gnu/services/vpn.scm (wireguard-configuration-file): Fix broken format
string.
---
 gnu/services/vpn.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/services/vpn.scm b/gnu/services/vpn.scm
index 9c8243d131..7fb4775757 100644
--- a/gnu/services/vpn.scm
+++ b/gnu/services/vpn.scm
@@ -820,7 +820,7 @@ (define (wireguard-configuration-file config)
                     (format #f "~@[ListenPort = ~a~]" #$port)
                     #$@(if (null? dns)
                            '()
-                           (list (format #f "~{DNS = ~{~a~^, ~}" dns)))))
+                           (list (format #f "DNS = ~{~a~^, ~}" dns)))))
 
                  (mkdir #$output)
                  (chdir #$output)

base-commit: 4a49a89b09d07d96f4d6ef3c0ca93801370f7b20




             reply	other threads:[~2023-08-28 16:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-28 15:11 Reily Siegel [this message]
2023-09-09 10:32 ` bug#65582: [PATCH] services: vpn: Fix broken format string for wireguard dns Liliana Marie Prikler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5c2f7432277e673fc725649bc90348410423f931.1693236027.git.mail@reilysiegel.com \
    --to=mail@reilysiegel.com \
    --cc=65582@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.