From: Jo-Philipp Wich <jow@openwrt.org>
Date: Mon, 25 Mar 2013 18:45:23 +0000 (+0000)
Subject: base-files: fix bad start index in previous commit
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7aace3ee3e569c923170815beb430e2f8384e323;p=lede.git

base-files: fix bad start index in previous commit

SVN-Revision: 36130
---

diff --git a/package/base-files/files/etc/init.d/sysctl b/package/base-files/files/etc/init.d/sysctl
index beeb79f7e6..81b0c9ba14 100755
--- a/package/base-files/files/etc/init.d/sysctl
+++ b/package/base-files/files/etc/init.d/sysctl
@@ -1,7 +1,7 @@
 #!/bin/sh /etc/rc.common
 # Copyright (C) 2006 OpenWrt.org 
 
-START=0
+START=00
 start() {
 	[ -f /etc/sysctl.conf ] && sysctl -p -e >&-
 }