chiark / gitweb /
condition: in ConditionPathIsExecutable follow symlinks
[elogind.git] / src / condition.c
index 8c08be43e43a14df2f7f94846ebf1c9013e868ef..933aec8485ebb5ab0ec048d8ed2a5324e45493c6 100644 (file)
@@ -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;