From 45e14d6b7718a11bb79373eb74978198113327c7 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Fri, 15 Dec 2023 05:08:14 +0000 Subject: powerdns: Write local address correctly. Prior to this, the local address was being wrongly written as the local port. * arunisaac/powerdns.scm (pdns-conf-gexp): Write local address correctly. Reported-by: jgart --- arunisaac/powerdns.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arunisaac') diff --git a/arunisaac/powerdns.scm b/arunisaac/powerdns.scm index aa36e3f..4c6fe65 100644 --- a/arunisaac/powerdns.scm +++ b/arunisaac/powerdns.scm @@ -168,7 +168,7 @@ configuration. Each backend can be configured separately.") ((eq? expand-alias? 'unset) #f) (expand-alias? "yes") (else "no"))) - (write-setting port "local-port" #$local-address) + (write-setting port "local-address" #$local-address) (write-setting port "local-port" #$local-port) (write-setting port "socket-dir" #$socket-directory) (write-setting port "resolver" #$resolver) -- cgit v1.2.3