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 43198CA91 for ; Sun, 11 Jan 2015 03:34:15 +0000 (UTC) Received: (qmail 74863 invoked by uid 500); 11 Jan 2015 03:34:16 -0000 Delivered-To: apmail-corinthia-commits-archive@corinthia.apache.org Received: (qmail 74844 invoked by uid 500); 11 Jan 2015 03:34:16 -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 74835 invoked by uid 99); 11 Jan 2015 03:34:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Jan 2015 03:34:16 +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 03:33:54 +0000 Received: (qmail 74801 invoked by uid 99); 11 Jan 2015 03:33:52 -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 03:33:52 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 656789A8CB2; Sun, 11 Jan 2015 03:33:52 +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 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-corinthia git commit: dfutil: Fix zip/unzip parameter order in help text Date: Sun, 11 Jan 2015 03:33:52 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-corinthia Updated Branches: refs/heads/master d785d58d9 -> 5c9a2c08e 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/master 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"