Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/openrc:master commit in: init.d/
Date: Wed, 27 Jul 2016 19:09:50
Message-Id: 1469646564.f2c2e2dd5a5e0a22da4dcabea6615d0f4697a962.williamh@OpenRC
1 commit: f2c2e2dd5a5e0a22da4dcabea6615d0f4697a962
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Wed Jul 27 19:09:24 2016 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 27 19:09:24 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=f2c2e2dd
7
8 init.d/sysctl.in: typo fix
9
10 init.d/sysctl.in | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/init.d/sysctl.in b/init.d/sysctl.in
14 index 05f5c4c..cb756f3 100644
15 --- a/init.d/sysctl.in
16 +++ b/init.d/sysctl.in
17 @@ -49,7 +49,7 @@ start()
18 local rc=0
19
20 ebegin "Configuring kernel parameters"
21 - case $RC_UNAME" in
22 + case "$RC_UNAME" in
23 *BSD|GNU) BSD_sysctl; rc=$? ;;
24 Linux) Linux_sysctl; rc=$? ;;
25 esac