diff options
| author | Jo-Philipp Wich <jow@openwrt.org> | 2012-05-19 20:17:19 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-05-19 20:17:19 +0000 |
| commit | 3eb18205322ac6660904c9df5fdff50c3de9e5de (patch) | |
| tree | 647181c11ecaca564f42f2173308fc5731ab01b7 | |
| parent | ce59af117c9f201f8ed66c89b9c0a9411f59c593 (diff) | |
| download | mtk-20170518-3eb18205322ac6660904c9df5fdff50c3de9e5de.zip mtk-20170518-3eb18205322ac6660904c9df5fdff50c3de9e5de.tar.gz mtk-20170518-3eb18205322ac6660904c9df5fdff50c3de9e5de.tar.bz2 | |
dnsmasq: fix parsing of mx record options (#11365)
SVN-Revision: 31814
| -rw-r--r-- | package/dnsmasq/files/dnsmasq.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/dnsmasq/files/dnsmasq.init b/package/dnsmasq/files/dnsmasq.init index b5ca5ca..33fc177 100644 --- a/package/dnsmasq/files/dnsmasq.init +++ b/package/dnsmasq/files/dnsmasq.init @@ -394,7 +394,7 @@ dhcp_mx_add() { local service="$domain,$relay,$pref" - append args "--mx-host=$service" + xappend "--mx-host=$service" } dhcp_cname_add() { |
