[packages] babel: fix typo in initscript, bump release number

git-svn-id: svn://svn.openwrt.org/openwrt/packages@21667 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2010-06-04 00:39:14 +00:00
parent 505dec4af9
commit 33a78ab597
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=babeld
PKG_VERSION:=1.0.1
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.pps.jussieu.fr/~jch/software/files/

View File

@ -20,7 +20,7 @@ append_ifname() {
local switch="$3"
local _name
config_get _name "$section" "$option"
[ -z "$name" ] && return 0
[ -z "$_name" ] && return 0
local _uciname=`uci get -q -P /var/state network.$_name.ifname`
append args "$switch ${_uciname:-$_name}"
}