From: Stefan Schantl <stefan.schantl@ipfire.org>
To: network@lists.ipfire.org
Subject: [network] [PATCH] functions.ipv6: Fix doubble square bracket when calling assert
Date: Sun, 18 Oct 2015 19:36:57 +0200 [thread overview]
Message-ID: <1445189817-7978-1-git-send-email-stefan.schantl@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 835 bytes --]
The assert check does not proper work when using doubble square backets,
so the check fails for some unknown reasons. Removing one bracket will allow
to successfully perform the assert check again.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/functions/functions.ipv6 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/functions/functions.ipv6 b/src/functions/functions.ipv6
index 9aedf84..2299135 100644
--- a/src/functions/functions.ipv6
+++ b/src/functions/functions.ipv6
@@ -399,7 +399,7 @@ ipv6_format() {
}
ipv6_addr_eq() {
- assert [[ $# -eq 2 ]]
+ assert [ $# -eq 2 ]
local addr1="${1}"
local addr2="${2}"
@@ -409,7 +409,7 @@ ipv6_addr_eq() {
}
ipv6_addr_gt() {
- assert [[ $# -eq 2 ]]
+ assert [ $# -eq 2 ]
local addr1="${1}"
local addr2="${2}"
--
2.4.3
reply other threads:[~2015-10-18 17:36 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1445189817-7978-1-git-send-email-stefan.schantl@ipfire.org \
--to=stefan.schantl@ipfire.org \
--cc=network@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox