summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-08-04 00:43:55 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-08-04 00:43:55 +0000
commit1d1a1b8ab133a3069e71d48c076ce2f2a4ab35fb (patch)
tree689a5d71ca198d86510924d47c6e524eb19edd80 /package
parent3bb5ea71eba06be79f8a2553257a80e99a6193e7 (diff)
downloadmaster-31e0f0ae-1d1a1b8ab133a3069e71d48c076ce2f2a4ab35fb.tar.gz
master-31e0f0ae-1d1a1b8ab133a3069e71d48c076ce2f2a4ab35fb.tar.bz2
master-31e0f0ae-1d1a1b8ab133a3069e71d48c076ce2f2a4ab35fb.zip
fix a typo in apply_config -t
SVN-Revision: 17120
Diffstat (limited to 'package')
-rwxr-xr-xpackage/uci/trigger/apply_config2
1 files changed, 1 insertions, 1 deletions
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