From: Lennart Poettering Date: Fri, 30 Apr 2010 00:16:55 +0000 (+0200) Subject: util: ignore lost+found, too X-Git-Tag: 0.git+20100605+dfd8ee-1~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6c78be3c3c63b59f18311b2d2b0e8d745f6ba131;p=platform%2Fupstream%2Fsystemd.git util: ignore lost+found, too --- diff --git a/util.c b/util.c index 8556ea1..eed9aa7 100644 --- a/util.c +++ b/util.c @@ -1199,6 +1199,7 @@ bool ignore_file(const char *filename) { return filename[0] == '.' || + streq(filename, "lost+found") || endswith(filename, "~") || endswith(filename, ".rpmnew") || endswith(filename, ".rpmsave") ||