xmail: cope with empty flags options (#9452)
authorFlorian Fainelli <[email protected]>
Wed, 8 Aug 2012 15:38:40 +0000 (15:38 +0000)
committerFlorian Fainelli <[email protected]>
Wed, 8 Aug 2012 15:38:40 +0000 (15:38 +0000)
SVN-Revision: 33058

mail/xmail/Makefile
mail/xmail/files/xmail.init

index 7ff16fbf45d8ef7edec4740afcb142088e6444db..e756c058b6674f37188e78a8bf555775ebcd0890 100644 (file)
@@ -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/
index 2f5abd5ab58458199506096a54128fb96ed39c7b..2b4990b4666a6c523ea2118470e3a1768385c8e7 100644 (file)
@@ -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"
 }