From: Lennart Poettering Date: Thu, 27 Nov 2014 20:56:39 +0000 (+0100) Subject: kmod-setup: simplify kernel command line parsing X-Git-Tag: v218~283 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=3da44ef53b949021e960d6169e809e297f2b7f65;ds=sidebyside kmod-setup: simplify kernel command line parsing --- diff --git a/src/core/kmod-setup.c b/src/core/kmod-setup.c index 019858f09..c0a05b97a 100644 --- a/src/core/kmod-setup.c +++ b/src/core/kmod-setup.c @@ -49,25 +49,7 @@ static void systemd_kmod_log( } static bool cmdline_check_kdbus(void) { - _cleanup_free_ char *line = NULL; - const char *p; - int r; - - r = proc_cmdline(&line); - if (r < 0) - return false; - - p = line; - for (;;) { - _cleanup_free_ char *word = NULL; - - r = unquote_first_word(&p, &word, true); - if (r <= 0) - return false; - - if (streq(word, "kdbus")) - return true; - } + return get_proc_cmdline_key("kdbus", NULL) > 0; } #endif