From: Mark Wooding Date: Fri, 25 Apr 2014 23:10:46 +0000 (+0100) Subject: zone.lisp: Stringify the zone name at construction time. X-Git-Url: https://git.distorted.org.uk/~mdw/zone/commitdiff_plain/babb8dd20692a2dcdd87b507116b6a94f60463cc zone.lisp: Stringify the zone name at construction time. It causes trouble later if we don't. --- diff --git a/zone.lisp b/zone.lisp index 1324f70..6b84dac 100644 --- a/zone.lisp +++ b/zone.lisp @@ -439,7 +439,7 @@ (ttl min-ttl) (serial (make-zone-serial zname))) (listify head) - (values zname + (values (string-downcase zname) (timespec-seconds ttl) (make-soa :admin admin :source (zone-parse-host source zname)