From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-521047-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 7EB8A138200
	for <garchives@archives.gentoo.org>; Wed,  7 Nov 2012 01:45:57 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 1720EE0527;
	Wed,  7 Nov 2012 01:45:44 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id 704FDE0527
	for <gentoo-commits@lists.gentoo.org>; Wed,  7 Nov 2012 01:45:43 +0000 (UTC)
Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163])
	(using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id D201133DCDB
	for <gentoo-commits@lists.gentoo.org>; Wed,  7 Nov 2012 01:45:42 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by hornbill.gentoo.org (Postfix) with ESMTP id E2BB0E5451
	for <gentoo-commits@lists.gentoo.org>; Wed,  7 Nov 2012 01:45:40 +0000 (UTC)
From: "Robin H. Johnson" <robbat2@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" <robbat2@gentoo.org>
Message-ID: <1352252666.ca6019031af96eabb471080e91374b44f176d113.robbat2@OpenRC>
Subject: [gentoo-commits] proj/openrc:master commit in: net/
X-VCS-Repository: proj/openrc
X-VCS-Files: net/apipa.sh
X-VCS-Directories: net/
X-VCS-Committer: robbat2
X-VCS-Committer-Name: Robin H. Johnson
X-VCS-Revision: ca6019031af96eabb471080e91374b44f176d113
X-VCS-Branch: master
Date: Wed,  7 Nov 2012 01:45:40 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 27e2dbf3-3388-4d9e-b561-452540605b3c
X-Archives-Hash: 41acd75e626cd6c5e6e508c3531dba2d

commit:     ca6019031af96eabb471080e91374b44f176d113
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Nov  7 01:44:17 2012 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Nov  7 01:44:26 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=ca601903

net/apipa: checkbashisms false positive.

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

---
 net/apipa.sh |    2 +-
 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