projects
/
openwrt
/
staging
/
ansuel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3bb5ea7
)
fix a typo in apply_config -t
author
Felix Fietkau
<nbd@openwrt.org>
Tue, 4 Aug 2009 00:43:55 +0000
(
00:43
+0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Tue, 4 Aug 2009 00:43:55 +0000
(
00:43
+0000)
SVN-Revision: 17120
package/uci/trigger/apply_config
patch
|
blob
|
history
diff --git
a/package/uci/trigger/apply_config
b/package/uci/trigger/apply_config
index b2f48daccee97bf81738cb4f64e555be3c236ba7..2ad6c9992a2c9c1a6ef73f69253c98ea9b503922 100755
(executable)
--- 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