From: Zbigniew Jędrzejewski-Szmek Date: Wed, 21 Oct 2020 20:59:19 +0000 (+0200) Subject: resolved: add trailing newlines in generated file X-Git-Tag: v247-rc1~22^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17415%2Fhead;p=thirdparty%2Fsystemd.git resolved: add trailing newlines in generated file Fixup for b3ffa2b5f3aa68dc6ab15893d5eeba8906aa3a9e. --- diff --git a/src/resolve/resolved-resolv-conf.c b/src/resolve/resolved-resolv-conf.c index 40f1f32f0a8..ba8f18f82d9 100644 --- a/src/resolve/resolved-resolv-conf.c +++ b/src/resolve/resolved-resolv-conf.c @@ -273,8 +273,8 @@ static int write_uplink_resolv_conf_contents(FILE *f, OrderedSet *dns, OrderedSe } if (ordered_set_isempty(domains)) - fputs("search .", f); /* Make sure that if the local hostname is chosen as fqdn this does not - * imply a search domain */ + fputs("search .\n", f); /* Make sure that if the local hostname is chosen as fqdn this does not + * imply a search domain */ else write_resolv_conf_search(domains, f); @@ -302,8 +302,8 @@ static int write_stub_resolv_conf_contents(FILE *f, OrderedSet *dns, OrderedSet "options edns0 trust-ad\n", f); if (ordered_set_isempty(domains)) - fputs("search .", f); /* Make sure that if the local hostname is chosen as fqdn this does not - * imply a search domain */ + fputs("search .\n", f); /* Make sure that if the local hostname is chosen as fqdn this does not + * imply a search domain */ else write_resolv_conf_search(domains, f);