From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag 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> In-Reply-To: <1500305066-12510-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5384916633218343789==" List-Id: --===============5384916633218343789== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit This function accepted only two arguments so new cmd coudl be passed. We accept now more then 2 arguments. Signed-off-by: Jonatan Schlag --- 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} -- 2.6.3 --===============5384916633218343789==--