Return-Path: X-Original-To: apmail-corinthia-commits-archive@minotaur.apache.org Delivered-To: apmail-corinthia-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 216E9CD9C for ; Sun, 11 Jan 2015 06:17:35 +0000 (UTC) Received: (qmail 94187 invoked by uid 500); 11 Jan 2015 06:17:36 -0000 Delivered-To: apmail-corinthia-commits-archive@corinthia.apache.org Received: (qmail 94157 invoked by uid 500); 11 Jan 2015 06:17:36 -0000 Mailing-List: contact commits-help@corinthia.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@corinthia.incubator.apache.org Delivered-To: mailing list commits@corinthia.incubator.apache.org Received: (qmail 94144 invoked by uid 99); 11 Jan 2015 06:17:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jan 2015 06:17:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 11 Jan 2015 06:17:35 +0000 Received: (qmail 94109 invoked by uid 99); 11 Jan 2015 06:17:15 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jan 2015 06:17:15 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 4DBFA9A8E9C; Sun, 11 Jan 2015 06:17:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pmkelly@apache.org To: commits@corinthia.incubator.apache.org Date: Sun, 11 Jan 2015 06:17:16 -0000 Message-Id: <9617ee3791f643d5a2edf7911ebf0c3b@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/5] incubator-corinthia git commit: dfutil: Fix zip/unzip parameter order in help text X-Virus-Checked: Checked by ClamAV on apache.org dfutil: Fix zip/unzip parameter order in help text Project: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/commit/5c9a2c08 Tree: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/tree/5c9a2c08 Diff: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/diff/5c9a2c08 Branch: refs/heads/stable Commit: 5c9a2c08ea370cf02ea1d76b4a1800ea8076e64b Parents: d785d58 Author: Peter Kelly Authored: Sun Jan 11 10:33:20 2015 +0700 Committer: Peter Kelly Committed: Sun Jan 11 10:33:20 2015 +0700 ---------------------------------------------------------------------- consumers/dfutil/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/5c9a2c08/consumers/dfutil/src/main.c ---------------------------------------------------------------------- diff --git a/consumers/dfutil/src/main.c b/consumers/dfutil/src/main.c index e1bfc7f..fed55ab 100644 --- a/consumers/dfutil/src/main.c +++ b/consumers/dfutil/src/main.c @@ -130,10 +130,10 @@ static int runCommand(int argc, const char **argv, DFError **dferr) "dfutil -css-unescape [infilename]\n" " Unescape CSS class name\n" "\n" - "dfutil -zip sourceDir zipFilename\n" + "dfutil -zip zipFilename sourceDir\n" " Create a zip file\n" "\n" - "dfutil -unzip destDir zipFilename\n" + "dfutil -unzip zipFilename destDir\n" " Extract a zip file\n" "\n" "dfutil input.html output.docx\n"