From: Zbigniew Jędrzejewski-Szmek Date: Mon, 13 Jun 2016 14:24:48 +0000 (-0400) Subject: resolved: use single message for both dbus and signal calls (#3515) X-Git-Tag: v231~169 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aac57b3539608c28e714643de3cf581a6f6322e5;p=thirdparty%2Fsystemd.git resolved: use single message for both dbus and signal calls (#3515) Follow-up for #3502. --- diff --git a/src/resolve/resolved-manager.c b/src/resolve/resolved-manager.c index a46f13b92fc..23101cb7602 100644 --- a/src/resolve/resolved-manager.c +++ b/src/resolve/resolved-manager.c @@ -474,7 +474,6 @@ static int manager_sigusr2(sd_event_source *s, const struct signalfd_siginfo *si assert(m); manager_flush_caches(m); - log_info("Flushed all caches."); return 0; } @@ -1257,4 +1256,6 @@ void manager_flush_caches(Manager *m) { LIST_FOREACH(scopes, scope, m->dns_scopes) dns_cache_flush(&scope->cache); + + log_info("Flushed all caches."); }