From: Ray Strode Date: Tue, 10 Jun 2008 17:27:56 +0000 (-0400) Subject: s/BOOLEAN/FLAG/ for client option types X-Git-Tag: 0.3.0~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ac4dd13ae0c1924b0f2f17e11486f7b9b9eff42;p=thirdparty%2Fplymouth.git s/BOOLEAN/FLAG/ for client option types --- diff --git a/src/client/plymouth.c b/src/client/plymouth.c index 858d3ae7..987a61cc 100644 --- a/src/client/plymouth.c +++ b/src/client/plymouth.c @@ -91,11 +91,11 @@ main (int argc, ply_command_parser_add_options (command_parser, "help", "This help message", PLY_COMMAND_OPTION_TYPE_FLAG, "newroot", "Tell boot daemon that new root filesystem is mounted", PLY_COMMAND_OPTION_TYPE_STRING, - "quit", "Tell boot daemon to quit", PLY_COMMAND_OPTION_TYPE_BOOLEAN, - "ping", "Check of boot daemon is running", PLY_COMMAND_OPTION_TYPE_BOOLEAN, - "sysinit", "Tell boot daemon root filesystem is mounted read-write", PLY_COMMAND_OPTION_TYPE_BOOLEAN, - "show-splash", "Show splash screen", PLY_COMMAND_OPTION_TYPE_BOOLEAN, - "ask-for-password", "Ask user for password", PLY_COMMAND_OPTION_TYPE_BOOLEAN, + "quit", "Tell boot daemon to quit", PLY_COMMAND_OPTION_TYPE_FLAG, + "ping", "Check of boot daemon is running", PLY_COMMAND_OPTION_TYPE_FLAG, + "sysinit", "Tell boot daemon root filesystem is mounted read-write", PLY_COMMAND_OPTION_TYPE_FLAG, + "show-splash", "Show splash screen", PLY_COMMAND_OPTION_TYPE_FLAG, + "ask-for-password", "Ask user for password", PLY_COMMAND_OPTION_TYPE_FLAG, "update", "Tell boot daemon an update about boot progress", PLY_COMMAND_OPTION_TYPE_STRING, NULL);