1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 03:19:50 +03:00

package/ppp: fix typo in r28868 (closes: #10429)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29165 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2011-11-15 23:40:39 +00:00
parent f2c319545c
commit 06b02b27ce
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=ppp
PKG_VERSION:=2.4.5
PKG_RELEASE:=3
PKG_RELEASE:=4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/ppp/

View File

@ -33,7 +33,7 @@ start_pppd() {
# make sure only one pppd process is started
lock "/var/lock/ppp-${link}"
SERVICE_PID_FILE="/var/run/ppp-${link}.pid" \
service_check /usr/sbin/ppd && {
service_check /usr/sbin/pppd && {
lock -u "/var/lock/ppp-${link}"
return 0
}