From: Frederic Crozat Date: Thu, 10 Sep 2009 16:34:32 +0000 (+0200) Subject: [daemon] fix detection of single on kernel cmdline X-Git-Tag: 0.7.2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a3a91cf425f71ecf193770b0b9d1fe31fb91f0e;p=thirdparty%2Fplymouth.git [daemon] fix detection of single on kernel cmdline --- diff --git a/src/main.c b/src/main.c index fdf44a94..00a6f24b 100644 --- a/src/main.c +++ b/src/main.c @@ -514,11 +514,11 @@ plymouth_should_show_default_splash (state_t *state) ply_trace ("checking if plymouth should show default splash"); const char const *strings[] = { - " single ", " single", "^single ", - " 1 ", " 1", "^1 ", - " s ", " s", "^s ", - " S ", " S", "^S ", - " -s ", " -s", "^-s ", + " single ", " single\n", "^single ", + " 1 ", " 1\n", "^1 ", + " s ", " s\n", "^s ", + " S ", " S\n", "^S ", + " -s ", " -s\n", "^-s ", NULL }; int i;