Merge pull request #3314 from ptpt52/fix-typo-luci-app-ddns

luci-app-ddns: fix typo err in luci.ddns
This commit is contained in:
Hannu Nyman 2019-11-16 19:19:57 +02:00 committed by GitHub
commit 3b2f05b4b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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