From patchwork Mon Aug 18 10:22:35 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Disseldorp X-Patchwork-Id: 4735631 Return-Path: X-Original-To: patchwork-linux-btrfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 158059F344 for ; Mon, 18 Aug 2014 10:26:34 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5BF7D20131 for ; Mon, 18 Aug 2014 10:26:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7C919200D9 for ; Mon, 18 Aug 2014 10:26:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752620AbaHRKWt (ORCPT ); Mon, 18 Aug 2014 06:22:49 -0400 Received: from cantor2.suse.de ([195.135.220.15]:57061 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752353AbaHRKWs (ORCPT ); Mon, 18 Aug 2014 06:22:48 -0400 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id BAD0FABF3 for ; Mon, 18 Aug 2014 10:22:46 +0000 (UTC) From: David Disseldorp To: linux-btrfs@vger.kernel.org Cc: David Disseldorp Subject: [PATCH v2] btrfs-progs: fix typo in subvol list usage Date: Mon, 18 Aug 2014 12:22:35 +0200 Message-Id: <1408357355-15053-1-git-send-email-ddiss@suse.de> X-Mailer: git-send-email 1.8.4.5 In-Reply-To: <1397669690-11950-1-git-send-email-ddiss@suse.de> References: <1397669690-11950-1-git-send-email-ddiss@suse.de> Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Spam-Status: No, score=-7.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: David Disseldorp --- Documentation/btrfs-subvolume.txt | 2 +- cmds-subvolume.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/btrfs-subvolume.txt b/Documentation/btrfs-subvolume.txt index a519131..c8b9928 100644 --- a/Documentation/btrfs-subvolume.txt +++ b/Documentation/btrfs-subvolume.txt @@ -99,7 +99,7 @@ print the ogeneration of the subvolume, aliases: ogen or origin generation. -g:::: print the generation of the subvolume. -o:::: -print only subvolumes bellow specified . +print only subvolumes below the specified . -u:::: print the UUID of the subvolume. -q:::: diff --git a/cmds-subvolume.c b/cmds-subvolume.c index 5e821c7..75a7385 100644 --- a/cmds-subvolume.c +++ b/cmds-subvolume.c @@ -390,7 +390,7 @@ static const char * const cmd_subvol_list_usage[] = { " to the given ", "-c print the ogeneration of the subvolume", "-g print the generation of the subvolume", - "-o print only subvolumes bellow specified path", + "-o print only subvolumes below the specified path", "-u print the uuid of subvolumes (and snapshots)", "-q print the parent uuid of the snapshots", "-t print the result as a table",