From: Lennart Poettering Date: Mon, 2 May 2016 14:02:02 +0000 (+0200) Subject: fstab-generator: add newline before we start a new unit file section X-Git-Tag: v230~85^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd10a84b7ffaa61b83c3cfa46fc75c69b961c360;p=thirdparty%2Fsystemd.git fstab-generator: add newline before we start a new unit file section We already did this for the [Mount] section, let's do the same for [Automount]. --- diff --git a/src/fstab-generator/fstab-generator.c b/src/fstab-generator/fstab-generator.c index 6f576b5ecf8..343e3b18179 100644 --- a/src/fstab-generator/fstab-generator.c +++ b/src/fstab-generator/fstab-generator.c @@ -379,6 +379,7 @@ static int add_mount( } fprintf(f, + "\n" "[Automount]\n" "Where=%s\n", where);