From patchwork Sun Nov 11 17:37:55 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulrik X-Patchwork-Id: 1725981 Return-Path: X-Original-To: patchwork-linux-btrfs@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 33E27DF288 for ; Sun, 11 Nov 2012 17:40:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753005Ab2KKRiC (ORCPT ); Sun, 11 Nov 2012 12:38:02 -0500 Received: from mail-ee0-f46.google.com ([74.125.83.46]:45129 "EHLO mail-ee0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752923Ab2KKRiB (ORCPT ); Sun, 11 Nov 2012 12:38:01 -0500 Received: by mail-ee0-f46.google.com with SMTP id b15so2972758eek.19 for ; Sun, 11 Nov 2012 09:37:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=Mh69LQDgC9wCxUAGBeUvDhBg8Xft32tD1dWxIinB4R0=; b=dgIOCwuRrgoy1cSDKqxlJjXknT8c0k5UVXI0mpakX6Afw7YJ9apxOcea04QRCIHjjn veYRKVSag1PxWx8lEkhiilXJfXWlBW7Ji3qlHcjeOgHJi87T0vIl8vSxTp6A7pykKVfN juaB+bEH7vJOpN6fuB3LaStmm9fQRA4bCHK4jpk0C1h4eb1jtE6E+2qCt+wfYq7onpSS xp14VudGDRdtRs9DeR8fhnMYvMJeIozYv6mskrZLkbI+memCtHO6Wc0fDbbOMQ8GVgES xgXcbZ0wLOkxHtVs4fPIrtv7u385nqfDFit+JkIMB5RH8vwowuTpp1bxxJS3G1lhlMuB KtVQ== Received: by 10.14.194.71 with SMTP id l47mr54910288een.6.1352655479687; Sun, 11 Nov 2012 09:37:59 -0800 (PST) Received: from [10.0.1.4] (h59ec1d20.selucle.dyn.perspektivbredband.net. [89.236.29.32]) by mx.google.com with ESMTPS id c6sm10988102eep.17.2012.11.11.09.37.58 (version=SSLv3 cipher=OTHER); Sun, 11 Nov 2012 09:37:59 -0800 (PST) Message-ID: <509FE273.3040902@gmail.com> Date: Sun, 11 Nov 2012 18:37:55 +0100 From: Ulrik User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.10) Gecko/20121027 Icedove/10.0.10 MIME-Version: 1.0 To: linux-btrfs@vger.kernel.org Subject: [PATCH] Btrfs-progs: correct btrfs receive usage string Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org Fix the usage string to specify the correct '-f' option for input file, not '-i'. Signed-off-by: Ulrik Sverdrup --- cmds-receive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmds-receive.c b/cmds-receive.c index a8be6fa..c182175 100644 --- a/cmds-receive.c +++ b/cmds-receive.c @@ -880,7 +880,7 @@ static const char * const receive_cmd_group_usage[] = { }; static const char * const cmd_receive_usage[] = { - "btrfs receive [-v] [-i ] ", + "btrfs receive [-v] [-f ] ", "Receive subvolumes from stdin.", "Receives one or more subvolumes that were previously ", "sent with btrfs send. The received subvolumes are stored",