summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorChen Minqiang <ptpt52@gmail.com>2019-11-16 15:10:17 +0800
committerChen Minqiang <ptpt52@gmail.com>2019-11-16 15:16:32 +0800
commite0d01ee267a3d56b04ee40b26e30b4aaa1805735 (patch)
treee7131df2a9a2455879ea7b7907d285b098be8192 /applications
parent9740604eef38335b180a8e38aa88fc5bc8343bd7 (diff)
luci-app-ddns: fix typo err in luci.ddns
Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
Diffstat (limited to 'applications')
-rwxr-xr-xapplications/luci-app-ddns/root/usr/libexec/rpcd/luci.ddns2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-ddns/root/usr/libexec/rpcd/luci.ddns b/applications/luci-app-ddns/root/usr/libexec/rpcd/luci.ddns
index 46209b908..0d4278e45 100755
--- a/applications/luci-app-ddns/root/usr/libexec/rpcd/luci.ddns
+++ b/applications/luci-app-ddns/root/usr/libexec/rpcd/luci.ddns
@@ -246,7 +246,7 @@ local methods = {
local function check_certs()
local _, v = fs.glob("/etc/ssl/certs/*.crt")
- if ( v == 0 ) then _, v = NXFS.glob("/etc/ssl/certs/*.pem") end
+ if ( v == 0 ) then _, v = fs.glob("/etc/ssl/certs/*.pem") end
return (v > 0)
end