From: Chen Minqiang Date: Sat, 16 Nov 2019 07:10:17 +0000 (+0800) Subject: luci-app-ddns: fix typo err in luci.ddns X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e0d01ee267a3d56b04ee40b26e30b4aaa1805735;p=oweals%2Fluci.git luci-app-ddns: fix typo err in luci.ddns Signed-off-by: Chen Minqiang --- 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