From: Benno Schulenberg Date: Thu, 11 Aug 2011 19:47:15 +0000 (+0200) Subject: sfdisk: correct '--inside-order' to '--inside-outer' in documentation X-Git-Tag: v2.20-rc2~61 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a89dbfee94d0e8521b1d3341734f433d64a217c3;p=thirdparty%2Futil-linux.git sfdisk: correct '--inside-order' to '--inside-outer' in documentation Signed-off-by: Benno Schulenberg --- diff --git a/fdisk/sfdisk.8 b/fdisk/sfdisk.8 index c3f06b3bb9..02e8d11a8f 100644 --- a/fdisk/sfdisk.8 +++ b/fdisk/sfdisk.8 @@ -322,10 +322,10 @@ Caution, see warning section. To be documented. .B \-\-not\-in\-order Caution, see warning section. To be documented. .TP -.B \-\-inside\-order +.B \-\-inside\-outer Caution, see warning section. Chaining order. .TP -.B \-\-not\-inside\-order +.B \-\-not\-inside\-outer Caution, see warning section. Chaining order. .TP .B \-\-nested diff --git a/fdisk/sfdisk.c b/fdisk/sfdisk.c index cd494d0656..08e1b0c530 100644 --- a/fdisk/sfdisk.c +++ b/fdisk/sfdisk.c @@ -2368,8 +2368,8 @@ usage(FILE * out) { " --IBM same as --leave-last\n" " --in-order partitions are in order\n" " --not-in-order partitions are not in order\n" - " --inside-order all logicals inside outermost extended\n" - " --not-inside-order not all logicals inside outermost extended\n" + " --inside-outer all logicals inside outermost extended\n" + " --not-inside-outer not all logicals inside outermost extended\n" " --nested every partition is disjoint from all others\n" " --chained like nested, but extended partitions may lie outside\n" " --onesector partitions are mutually disjoint\n"