From: Felix Fietkau Date: Tue, 4 Aug 2009 00:43:55 +0000 (+0000) Subject: fix a typo in apply_config -t X-Git-Tag: reboot~22762 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1d1a1b8ab133a3069e71d48c076ce2f2a4ab35fb;p=oweals%2Fopenwrt.git fix a typo in apply_config -t SVN-Revision: 17120 --- diff --git a/package/uci/trigger/apply_config b/package/uci/trigger/apply_config index b2f48dacce..2ad6c9992a 100755 --- a/package/uci/trigger/apply_config +++ b/package/uci/trigger/apply_config @@ -32,7 +32,7 @@ elseif arg[1] == "-t" then local trigger = a[1] local sections = a[2] if trigger.section_only then - print(trigger.id .. " " .. table.concat(" ", sections)) + print(trigger.id .. " " .. table.concat(sections, " ")) else print(trigger.id) end