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.