From: Lennart Poettering Date: Thu, 19 Jul 2012 00:35:17 +0000 (+0200) Subject: journal: follow symlinks when enumerating journals X-Git-Tag: v187~16 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=6f5878a286c34739d8d6759de5f5a77e56daeb61 journal: follow symlinks when enumerating journals --- diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index c3f19ca69..4c19fc0ed 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -1329,7 +1329,7 @@ static int add_root_directory(sd_journal *j, const char *p) { if (r < 0) log_debug("Failed to add file %s/%s: %s", m->path, de->d_name, strerror(-r)); - } else if ((de->d_type == DT_DIR || de->d_type == DT_UNKNOWN) && + } else if ((de->d_type == DT_DIR || de->d_type == DT_LNK || de->d_type == DT_UNKNOWN) && sd_id128_from_string(de->d_name, &id) >= 0) { r = add_directory(j, m->path, de->d_name);