d743bb5bcc
This reverts commits3fb4a15096
and0e8350ca14
. Either building with meson or other upstream changes was causing issues with booting, and I didn't have time to debug this properly.
26 lines
1.2 KiB
Diff
26 lines
1.2 KiB
Diff
From 90eee306291a39b888ec13b3bd2f418f1f5aba0d Mon Sep 17 00:00:00 2001
|
|
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
|
Date: Mon, 13 Mar 2017 09:12:03 +0900
|
|
Subject: [PATCH] resolve: add missing space in output message (#5574)
|
|
|
|
(cherry picked from commit 44ccb3d72315f68d0b4b07217c99bad35b055ec3)
|
|
---
|
|
src/resolve/resolve-tool.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/resolve/resolve-tool.c b/src/resolve/resolve-tool.c
|
|
index 32537ce6e8..c62058917f 100644
|
|
--- a/src/resolve/resolve-tool.c
|
|
+++ b/src/resolve/resolve-tool.c
|
|
@@ -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));
|
|
|