chiark
/
gitweb
/
~mdw
/
zone
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
zone.lisp: TXT record data is always a list of strings.
[zone]
/
zone.lisp
diff --git
a/zone.lisp
b/zone.lisp
index 6b84dac957619fea85e63928434e7b0049029bd1..633e0d4978fe1f92ed55463949520789aca3f872 100644
(file)
--- a/
zone.lisp
+++ b/
zone.lisp
@@
-632,8
+632,8
@@
(defzoneparse :cname (name data rec :zname zname)
(rec :data (zone-parse-host data zname)))
(defzoneparse :txt (name data rec)
(rec :data (zone-parse-host data zname)))
(defzoneparse :txt (name data rec)
- ":txt
TEXT
"
- (rec :data
data
))
+ ":txt
(TEXT*)
"
+ (rec :data
(listify data)
))
(export '*dkim-pathname-defaults*)
(defvar *dkim-pathname-defaults*
(export '*dkim-pathname-defaults*)
(defvar *dkim-pathname-defaults*
@@
-1003,7
+1003,7
@@
(defgeneric bind-record-format-args (type data)
(cons "~2D ~2D ~A" data))
(:method ((type (eql :txt)) data)
(cons "~#[\"\"~;~S~:;(~@{~%~8T~S~} )~]"
(cons "~2D ~2D ~A" data))
(:method ((type (eql :txt)) data)
(cons "~#[\"\"~;~S~:;(~@{~%~8T~S~} )~]"
- (mapcar #'stringify
(listify data)
))))
+ (mapcar #'stringify
data
))))
(defmethod bind-record (type zr)
(destructuring-bind (format &rest args)
(defmethod bind-record (type zr)
(destructuring-bind (format &rest args)