diff options
-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; |