diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-08-23 13:31:44 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-08-23 13:31:44 +0000 |
commit | 53a7206209f655f97aa06f38d5c8d6504746533c (patch) | |
tree | 5c6db84b893a9ca1f5e963186537feb384755f51 /package/base-files/default/etc/init.d | |
parent | 7ef1c93d15ef2f3c6ce44d7ae257cf263d71188c (diff) | |
download | upstream-53a7206209f655f97aa06f38d5c8d6504746533c.tar.gz upstream-53a7206209f655f97aa06f38d5c8d6504746533c.tar.bz2 upstream-53a7206209f655f97aa06f38d5c8d6504746533c.zip |
fix typo in S40network
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1735 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/default/etc/init.d')
-rwxr-xr-x | package/base-files/default/etc/init.d/S40network | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/default/etc/init.d/S40network b/package/base-files/default/etc/init.d/S40network index a5afe5266f..c4226d3437 100755 --- a/package/base-files/default/etc/init.d/S40network +++ b/package/base-files/default/etc/init.d/S40network @@ -1,5 +1,6 @@ #!/bin/sh -[ -e /etc/config/network] && . /etc/config/network +. /etc/functions.sh +[ -e /etc/config/network ] && . /etc/config/network case "$1" in start|restart) ifup lan |