X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fquotacheck%2Fquotacheck.c;h=622952a6e93e5ed87be147e34fcfb7f60d1b0a86;hb=9fa3006323e86962ceaa3171b906cf2b1c2cf525;hp=1f637850415ab8ca849dc16a83bf1687b2e9a68b;hpb=83374163014eb50ed0ecd4f18ab45e5280ce7081;p=elogind.git diff --git a/src/quotacheck/quotacheck.c b/src/quotacheck/quotacheck.c index 1f6378504..622952a6e 100644 --- a/src/quotacheck/quotacheck.c +++ b/src/quotacheck/quotacheck.c @@ -26,7 +26,6 @@ #include #include "util.h" -#include "virt.h" #include "fileio.h" static bool arg_skip = false; @@ -38,14 +37,11 @@ static int parse_proc_cmdline(void) { size_t l; int r; - if (detect_container(NULL) > 0) - return 0; - - r = read_one_line_file("/proc/cmdline", &line); - if (r < 0) { + r = proc_cmdline(&line); + if (r < 0) log_warning("Failed to read /proc/cmdline, ignoring: %s", strerror(-r)); + if (r <= 0) return 0; - } FOREACH_WORD_QUOTED(w, l, line, state) {