summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-ddns/root/usr
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2019-11-16 19:19:57 +0200
committerGitHub <noreply@github.com>2019-11-16 19:19:57 +0200
commit3b2f05b4b234a2b0e4caedb59e1434a049fd6fba (patch)
tree582a6c23fcce5a9ae32bc39d2d196499f8631775 /applications/luci-app-ddns/root/usr
parent1df1421221a2e22334668e6c5524fc359f21d32d (diff)
parente0d01ee267a3d56b04ee40b26e30b4aaa1805735 (diff)
Merge pull request #3314 from ptpt52/fix-typo-luci-app-ddns
luci-app-ddns: fix typo err in luci.ddns
Diffstat (limited to 'applications/luci-app-ddns/root/usr')
-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 46209b9082..0d4278e45d 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