diff options
author | Chen Minqiang <ptpt52@gmail.com> | 2019-11-16 15:10:17 +0800 |
---|---|---|
committer | Chen Minqiang <ptpt52@gmail.com> | 2019-11-16 15:16:32 +0800 |
commit | e0d01ee267a3d56b04ee40b26e30b4aaa1805735 (patch) | |
tree | e7131df2a9a2455879ea7b7907d285b098be8192 /applications | |
parent | 9740604eef38335b180a8e38aa88fc5bc8343bd7 (diff) |
luci-app-ddns: fix typo err in luci.ddns
Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
Diffstat (limited to 'applications')
-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 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 |