diff options
author | Steven Barth <steven@midlink.org> | 2009-01-02 21:33:10 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-01-02 21:33:10 +0000 |
commit | 70ded13045e6b882859eeb0acb928eb8cacefd28 (patch) | |
tree | f1aaeaa1da2349686e7d297bd061455df4d21f81 /applications/luci-uvc_streamer | |
parent | 748bbc8acb42065886d23dc7d95afa218dc42445 (diff) |
Use luci.fs.access instead of luci.fs.isfile where applicable
Diffstat (limited to 'applications/luci-uvc_streamer')
-rw-r--r-- | applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua b/applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua index 1766c2b11..64491dc9d 100644 --- a/applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua +++ b/applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua @@ -18,7 +18,7 @@ module("luci.controller.uvc_streamer", package.seeall) function index() require("luci.i18n") luci.i18n.loadc("uvc_streamer") - if not luci.fs.isfile("/etc/config/uvc-streamer") then + if not luci.fs.access("/etc/config/uvc-streamer") then return end |