]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
resolve: add missing space in output message (#5574)
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 13 Mar 2017 00:12:03 +0000 (09:12 +0900)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 13 Mar 2017 00:12:03 +0000 (20:12 -0400)
src/resolve/resolve-tool.c

index 32537ce6e8acb6db5f24fb7de931ee5bb44148df..c62058917fca9231de45c32fb807a8175c6f0f9c 100644 (file)
@@ -114,8 +114,8 @@ static void print_source(uint64_t flags, usec_t rtt) {
                        flags & SD_RESOLVED_DNS ? " DNS" :"",
                        flags & SD_RESOLVED_LLMNR_IPV4 ? " LLMNR/IPv4" : "",
                        flags & SD_RESOLVED_LLMNR_IPV6 ? " LLMNR/IPv6" : "",
-                       flags & SD_RESOLVED_MDNS_IPV4 ? "mDNS/IPv4" : "",
-                       flags & SD_RESOLVED_MDNS_IPV6 ? "mDNS/IPv6" : "");
+                       flags & SD_RESOLVED_MDNS_IPV4 ? " mDNS/IPv4" : "",
+                       flags & SD_RESOLVED_MDNS_IPV6 ? " mDNS/IPv6" : "");
 
         assert_se(format_timespan(rtt_str, sizeof(rtt_str), rtt, 100));