diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-11-01 15:12:17 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-11-01 15:12:17 +0000 |
commit | 3cd87bc3fb9dc523c7299f17f5266461e2667fa6 (patch) | |
tree | 27245e6b6ebd05856d0f3f214e7bdfeb7990ba08 /sys/src/cmd/ndb/dn.c | |
parent | 5e3ded2242365aa3911b4095393209d35671f567 (diff) |
ndb/dns: use correct attribute when serializing caa record in ndb format
Diffstat (limited to 'sys/src/cmd/ndb/dn.c')
-rw-r--r-- | sys/src/cmd/ndb/dn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/src/cmd/ndb/dn.c b/sys/src/cmd/ndb/dn.c index 8d8810293..4c3c7f352 100644 --- a/sys/src/cmd/ndb/dn.c +++ b/sys/src/cmd/ndb/dn.c @@ -1451,9 +1451,9 @@ rravfmt(Fmt *f) break; case Tcaa: if (rp->caa == nil) - fmtprint(&fstr, " flags=<null> tag=<null> value=<null>"); + fmtprint(&fstr, " flags=<null> tag=<null> caa=<null>"); else - fmtprint(&fstr, " flags=%d tag=%s value=%.*s", + fmtprint(&fstr, " flags=%d tag=%s caa=\"%.*s\"", rp->caa->flags, dnname(rp->caa->tag), rp->caa->dlen, (char*)rp->caa->data); break; |