diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2019-11-16 19:19:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-16 19:19:57 +0200 |
commit | 3b2f05b4b234a2b0e4caedb59e1434a049fd6fba (patch) | |
tree | 582a6c23fcce5a9ae32bc39d2d196499f8631775 /applications/luci-app-ddns/root/usr | |
parent | 1df1421221a2e22334668e6c5524fc359f21d32d (diff) | |
parent | e0d01ee267a3d56b04ee40b26e30b4aaa1805735 (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-x | applications/luci-app-ddns/root/usr/libexec/rpcd/luci.ddns | 2 |
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 |