[2/5] header-zone fix hook_config_edit()
Message ID | 1500305066-12510-2-git-send-email-jonatan.schlag@ipfire.org |
---|---|
State | Accepted |
Commit | 15be9d6963c91e787e25f2e9cc1defe446525470 |
Headers |
Return-Path: <network-bounces@lists.ipfire.org> Received: from mail01.ipfire.org (unknown [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id 7313861C5D for <patchwork@ipfire.org>; Mon, 17 Jul 2017 17:24:39 +0200 (CEST) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 51C2E27D9; Mon, 17 Jul 2017 17:24:39 +0200 (CEST) Received: from ipfire.localdomain (dslb-088-073-208-102.088.073.pools.vodafone-ip.de [88.73.208.102]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4CEFA27D1; Mon, 17 Jul 2017 17:24:37 +0200 (CEST) From: Jonatan Schlag <jonatan.schlag@ipfire.org> To: network@lists.ipfire.org Subject: [PATCH 2/5] header-zone fix hook_config_edit() Date: Mon, 17 Jul 2017 17:24:23 +0200 Message-Id: <1500305066-12510-2-git-send-email-jonatan.schlag@ipfire.org> X-Mailer: git-send-email 2.6.3 In-Reply-To: <1500305066-12510-1-git-send-email-jonatan.schlag@ipfire.org> References: <1500305066-12510-1-git-send-email-jonatan.schlag@ipfire.org> X-BeenThere: network@lists.ipfire.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List for the network package <network.lists.ipfire.org> List-Unsubscribe: <http://lists.ipfire.org/mailman/options/network>, <mailto:network-request@lists.ipfire.org?subject=unsubscribe> List-Archive: <http://lists.ipfire.org/pipermail/network/> List-Post: <mailto:network@lists.ipfire.org> List-Help: <mailto:network-request@lists.ipfire.org?subject=help> List-Subscribe: <http://lists.ipfire.org/mailman/listinfo/network>, <mailto:network-request@lists.ipfire.org?subject=subscribe> Errors-To: network-bounces@lists.ipfire.org Sender: "network" <network-bounces@lists.ipfire.org> |
Message
Jonatan Schlag
July 18, 2017, 1:24 a.m. UTC
This function accepted only two arguments so new cmd coudl be passed.
We accept now more then 2 arguments.
Signed-off-by: Jonatan Schlag <jonatan.schlag@ipfire.org>
---
src/header-zone | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
On Mon, 2017-07-17 at 17:24 +0200, Jonatan Schlag wrote: > This function accepted only two arguments so new cmd coudl be passed. > We accept now more then 2 arguments. > > Signed-off-by: Jonatan Schlag <jonatan.schlag@ipfire.org> > --- > src/header-zone | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/header-zone b/src/header-zone > index 2e3fa09..98b0ce7 100644 > --- a/src/header-zone > +++ b/src/header-zone > @@ -225,7 +225,7 @@ hook_config_destroy() { > } > > hook_config_edit() { > - assert [ $# -eq 2 ] > + assert [ $# -ge 2 ] > local zone=${1} > # The id must be the id and not the hid. > local id=${2} Please have a blank line after any assertions.