From: Ray Strode Date: Fri, 5 Sep 2008 18:31:08 +0000 (-0400) Subject: Strip out , when parsing console X-Git-Tag: 0.6.0~165 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d12ae10a70e7e8a9494b55feff2be5cdd107ad3a;p=thirdparty%2Fplymouth.git Strip out , when parsing console Options can be passed to the console, we should ignore them when opening the console. --- diff --git a/src/main.c b/src/main.c index a9a5dfe2..21bfae26 100644 --- a/src/main.c +++ b/src/main.c @@ -496,7 +496,7 @@ check_for_serial_console (state_t *state) free (state->console); state->console = strdup (console_key + strlen (" console=")); - end = strpbrk (state->console, " \n\t\v"); + end = strpbrk (state->console, " \n\t\v,"); if (end != NULL) *end = '\0';