diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-11-07 01:44:17 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-11-07 01:44:26 +0000 |
commit | ca6019031af96eabb471080e91374b44f176d113 (patch) | |
tree | e507fe65bc4ed2b3be542c8ca76ac8bb1ebc6490 /net/apipa.sh | |
parent | 4ec1edc1f8bb87b5989368a60162646760dc22fc (diff) |
net/apipa: checkbashisms false positive.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'net/apipa.sh')
-rw-r--r-- | net/apipa.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/apipa.sh b/net/apipa.sh index ae61233b..a4aee8a4 100644 --- a/net/apipa.sh +++ b/net/apipa.sh @@ -8,7 +8,7 @@ apipa_depend() _random() { - local r=${RANDOM} + local r=${RANDOM} # checkbashisms: false positive, we handle it AFTERWARDS if [ -n "${r}" ]; then echo "${r}" else |