unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#65582] [PATCH] services: vpn: Fix broken format string for wireguard dns.
@ 2023-08-28 15:11 Reily Siegel
  2023-09-09 10:32 ` bug#65582: " Liliana Marie Prikler
  0 siblings, 1 reply; 2+ messages in thread
From: Reily Siegel @ 2023-08-28 15:11 UTC (permalink / raw)
  To: 65582


* 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




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#65582: [PATCH] services: vpn: Fix broken format string for wireguard dns.
  2023-08-28 15:11 [bug#65582] [PATCH] services: vpn: Fix broken format string for wireguard dns Reily Siegel
@ 2023-09-09 10:32 ` Liliana Marie Prikler
  0 siblings, 0 replies; 2+ messages in thread
From: Liliana Marie Prikler @ 2023-09-09 10:32 UTC (permalink / raw)
  To: Reily Siegel, 65582-done

Am Montag, dem 28.08.2023 um 11:11 -0400 schrieb Reily Siegel:
> 
> * gnu/services/vpn.scm (wireguard-configuration-file): Fix broken
> format string.
> ---
LGTM, pushed.

Thanks




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-09-09 10:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-28 15:11 [bug#65582] [PATCH] services: vpn: Fix broken format string for wireguard dns Reily Siegel
2023-09-09 10:32 ` bug#65582: " Liliana Marie Prikler

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).