From d33a2ce1131444f13cca50df6aceee575bd20cea Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 8 Aug 2012 15:38:40 +0000 Subject: [PATCH] [package] xmail: cope with empty flags options (#9452) git-svn-id: svn://svn.openwrt.org/openwrt/packages@33058 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- mail/xmail/Makefile | 4 ++-- mail/xmail/files/xmail.init | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mail/xmail/Makefile b/mail/xmail/Makefile index 7ff16fbf4..e756c058b 100644 --- a/mail/xmail/Makefile +++ b/mail/xmail/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2007-2011 OpenWrt.org +# Copyright (C) 2007-2012 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=xmail PKG_VERSION:=1.26 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.xmailserver.org/ diff --git a/mail/xmail/files/xmail.init b/mail/xmail/files/xmail.init index 2f5abd5ab..2b4990b46 100644 --- a/mail/xmail/files/xmail.init +++ b/mail/xmail/files/xmail.init @@ -13,7 +13,7 @@ append_bool() { local option="$2" local value="$3" local _loctmp - config_get_bool _loctmp "$section" "$option" + config_get_bool _loctmp "$section" "$option" 0 [ "$_loctmp" -le 0 ] && return 0 append args "$value" } -- 2.11.0