diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-09-20 01:28:00 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-09-20 01:28:07 +0200 |
commit | 34a2dc4bfce222a6eb858bc5effab0091bf0db2e (patch) | |
tree | a9dd017b258aa230051f5481a918b1f85a437c69 | |
parent | a373b0e7bc24b8fffe0ba69e8b92eebf2740332e (diff) |
condition: in ConditionPathIsExecutable follow symlinks
https://bugzilla.redhat.com/show_bug.cgi?id=737047
-rw-r--r-- | src/condition.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/condition.c b/src/condition.c index 8c08be43e4..933aec8485 100644 --- a/src/condition.c +++ b/src/condition.c @@ -171,7 +171,7 @@ bool condition_test(Condition *c) { case CONDITION_FILE_IS_EXECUTABLE: { struct stat st; - if (lstat(c->parameter, &st) < 0) + if (stat(c->parameter, &st) < 0) return !c->negate; return (S_ISREG(st.st_mode) && (st.st_mode & 0111)) == !c->negate; |