summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2012-11-07 01:44:17 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2012-11-07 01:44:26 +0000
commitca6019031af96eabb471080e91374b44f176d113 (patch)
treee507fe65bc4ed2b3be542c8ca76ac8bb1ebc6490 /net
parent4ec1edc1f8bb87b5989368a60162646760dc22fc (diff)
downloadopenrc-ca6019031af96eabb471080e91374b44f176d113.tar.gz
openrc-ca6019031af96eabb471080e91374b44f176d113.tar.bz2
openrc-ca6019031af96eabb471080e91374b44f176d113.tar.xz
net/apipa: checkbashisms false positive.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'net')
-rw-r--r--net/apipa.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/apipa.sh b/net/apipa.sh
index ae61233..a4aee8a 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