projects
/
project
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4700739
)
ffluci-splash: Minor fixes
author
Steven Barth
<steven@midlink.org>
Sun, 27 Apr 2008 23:01:47 +0000
(23:01 +0000)
committer
Steven Barth
<steven@midlink.org>
Sun, 27 Apr 2008 23:01:47 +0000
(23:01 +0000)
contrib/package/ffluci-splash/src/luci-splash.lua
patch
|
blob
|
history
diff --git
a/contrib/package/ffluci-splash/src/luci-splash.lua
b/contrib/package/ffluci-splash/src/luci-splash.lua
index
72a801c
..
72b6349
100644
(file)
--- a/
contrib/package/ffluci-splash/src/luci-splash.lua
+++ b/
contrib/package/ffluci-splash/src/luci-splash.lua
@@
-14,10
+14,7
@@
function main(argv)
local cmd = argv[1]
local arg = argv[2]
- if not cmd then
- print("Usage: " .. argv[0] .. " <status|add|remove|sync> [MAC]")
- os.exit(1)
- elseif cmd == "status" then
+ if cmd == "status" then
if not arg then
os.exit(1)
end
@@
-47,7
+44,7
@@
function main(argv)
end
os.exit(0)
elseif cmd == "remove" then
- if not
cmd[2]
then
+ if not
arg
then
os.exit(1)
end
@@
-56,6
+53,9
@@
function main(argv)
elseif cmd == "sync" then
sync()
os.exit(0)
+ else
+ print("Usage: " .. argv[0] .. " <status|add|remove|sync> [MAC]")
+ os.exit(1)
end
end