From: Mark Wooding Date: Wed, 21 May 2014 16:06:08 +0000 (+0100) Subject: Hack :ANY pseudo-record type to cope with the new domain name objects. X-Git-Url: https://git.distorted.org.uk/~mdw/zones/commitdiff_plain/c9f9659084a3205fd37ee4b05ebbc173721d0e9c Hack :ANY pseudo-record type to cope with the new domain name objects. --- diff --git a/distorted.lisp b/distorted.lisp index 62ff64c..80200d2 100644 --- a/distorted.lisp +++ b/distorted.lisp @@ -28,9 +28,10 @@ (dolist (provider (list* any-provider default-provider other-providers)) (zone-set-address #'rec (cdr provider) :make-ptr-p (eq provider any-provider) - :name (concatenate 'string prefix "." - (string-downcase (car provider)) - "." (string-downcase zname)))))) + :name (domain-name-concat prefix + (zone-parse-host + (car provider) + zname)))))) ;;;-------------------------------------------------------------------------- ;;; Other definitions.