diff mbox series

btrfs-progs: corrupt-block: Fix description of 'r' option

Message ID 20190911135552.22087-1-nborisov@suse.com (mailing list archive)
State New, archived
Headers show
Series btrfs-progs: corrupt-block: Fix description of 'r' option | expand

Commit Message

Nikolay Borisov Sept. 11, 2019, 1:55 p.m. UTC
Since commit 04be0e4b1962 ("btrfs-progs: corrupt-block: Correctlyi
handle -r when passing -I") the 'r' switch is used with both -I and -d
options. So remove the wrong clarificatoin that -r is used only with -d
option.

Signed-off-by: Nikolay Borisov <nborisov@suse.com>
---
 btrfs-corrupt-block.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Sterba Sept. 12, 2019, 5:44 p.m. UTC | #1
On Wed, Sep 11, 2019 at 04:55:52PM +0300, Nikolay Borisov wrote:
> Since commit 04be0e4b1962 ("btrfs-progs: corrupt-block: Correctlyi
> handle -r when passing -I") the 'r' switch is used with both -I and -d
> options. So remove the wrong clarificatoin that -r is used only with -d
> option.
> 
> Signed-off-by: Nikolay Borisov <nborisov@suse.com>

Applied, thanks.
diff mbox series

Patch

diff --git a/btrfs-corrupt-block.c b/btrfs-corrupt-block.c
index bbef0c02e5d1..716439a5ea7c 100644
--- a/btrfs-corrupt-block.c
+++ b/btrfs-corrupt-block.c
@@ -119,7 +119,7 @@  static void print_usage(int ret)
 	printf("\t-I <u64,u8,u64> Corrupt an item corresponding to the passed key triplet (must also specify the field to corrupt and root for the item)\n");
 	printf("\t-D <u64,u8,u64> Corrupt a dir item corresponding to the passed key triplet, must also specify a field\n");
 	printf("\t-d <u64,u8,u64> Delete item corresponding to passed key triplet\n");
-	printf("\t-r   Operate on this root (only works with -d)\n");
+	printf("\t-r   Operate on this root\n");
 	printf("\t-C   Delete a csum for the specified bytenr.  When used with -b it'll delete that many bytes, otherwise it's just sectorsize\n");
 	exit(ret);
 }