X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=src%2Fcondition.c;h=933aec8485ebb5ab0ec048d8ed2a5324e45493c6;hb=34a2dc4bfce222a6eb858bc5effab0091bf0db2e;hp=f9202f68508d9aafd12e53f14e9781f00a332e46;hpb=82e487c56d0947796793b6fd2836264328defe9f;p=elogind.git diff --git a/src/condition.c b/src/condition.c index f9202f685..933aec848 100644 --- a/src/condition.c +++ b/src/condition.c @@ -75,7 +75,7 @@ static bool test_kernel_command_line(const char *parameter) { assert(parameter); - if (detect_virtualization(NULL) > 0) + if (detect_container(NULL) > 0) return false; if ((r = read_one_line_file("/proc/cmdline", &line)) < 0) { @@ -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;