diff mbox series

[bug#55658] services: ddclient: No need to import (ice-9 rdelim) from the host.

Message ID 20220526130745.28781-1-attila@lendvai.name
State Accepted
Headers show
Series [bug#55658] services: ddclient: No need to import (ice-9 rdelim) from the host. | expand

Checks

Context Check Description
cbaines/comparison success View comparision
cbaines/git branch success View Git branch
cbaines/applying patch success View Laminar job
cbaines/issue success View issue

Commit Message

Attila Lendvai May 26, 2022, 1:07 p.m. UTC
* gnu/services/dns.scm (ddclient-activation): Remove (ice-9 rdelim) from the
with-imported-modules form.
---

this gets rid of a warning (and a potential error with a substantially
different guile version on the two sides).

 gnu/services/dns.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Ludovic Courtès June 3, 2022, 9:51 p.m. UTC | #1
Hi,

Attila Lendvai <attila@lendvai.name> skribis:

> * gnu/services/dns.scm (ddclient-activation): Remove (ice-9 rdelim) from the
> with-imported-modules form.

Good catch.  Applied, thanks!

Ludo’.
diff mbox series

Patch

diff --git a/gnu/services/dns.scm b/gnu/services/dns.scm
index a220b33f15..50753b7ab6 100644
--- a/gnu/services/dns.scm
+++ b/gnu/services/dns.scm
@@ -978,8 +978,7 @@  (define (ddclient-account config)
 
 (define (ddclient-activation config)
   "Return the activation GEXP for CONFIG."
-  (with-imported-modules '((guix build utils)
-                           (ice-9 rdelim))
+  (with-imported-modules '((guix build utils))
     #~(begin
         (use-modules (guix build utils)
                      (ice-9 rdelim))