From: Benno Schulenberg Date: Sat, 25 Jul 2015 15:18:14 +0000 (+0200) Subject: cfdisk: allow an uppercase X to toggle the extra info X-Git-Tag: v2.27-rc1~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80351b1f4aafde2fc892f1eb333a6879a4607e44;p=thirdparty%2Futil-linux.git cfdisk: allow an uppercase X to toggle the extra info To make true the help text line that says that all commands can be entered with either upper or lower case. Signed-off-by: Benno Schulenberg --- diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c index 11a087ee78..ac07bb5f97 100644 --- a/disk-utils/cfdisk.c +++ b/disk-utils/cfdisk.c @@ -2519,6 +2519,7 @@ static int ui_run(struct cfdisk *cf) case '\r': rc = main_menu_action(cf, 0); break; + case 'X': case 'x': /* Extra */ toggle_show_extra(cf); break;