From: Lennart Poettering Date: Wed, 9 Dec 2015 16:29:53 +0000 (+0100) Subject: resolved: when outputting RRs in text form, append a trailing dot to owner names X-Git-Tag: v229~217^2~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c52a97b896c914e17ba5be73c0e806455fd9ad4d;p=thirdparty%2Fsystemd.git resolved: when outputting RRs in text form, append a trailing dot to owner names After all, that's how this is done in DNS, and is particularly important if we look a DS/DNSKEY RRs for the root zone itself, where the owner name would otherwise be shown as completely empty (i.e. missing). --- diff --git a/src/resolve/resolved-dns-rr.c b/src/resolve/resolved-dns-rr.c index 260a2a3bd66..c7667990b67 100644 --- a/src/resolve/resolved-dns-rr.c +++ b/src/resolve/resolved-dns-rr.c @@ -309,7 +309,7 @@ int dns_resource_key_to_string(const DnsResourceKey *key, char **ret) { t = tbuf; } - if (asprintf(&s, "%s %s %-5s", DNS_RESOURCE_KEY_NAME(key), c, t) < 0) + if (asprintf(&s, "%s. %s %-5s", DNS_RESOURCE_KEY_NAME(key), c, t) < 0) return -ENOMEM; *ret = s;