Software /
code /
prosody-modules
Changeset
4882:28f6322fad50
mod_dnsupdate: Fix typo
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 04 Feb 2022 16:25:23 +0100 |
parents | 4881:09b8144051ea |
children | 4883:68bd8ae9b827 |
files | mod_dnsupdate/mod_dnsupdate.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_dnsupdate/mod_dnsupdate.lua Wed Feb 02 11:22:50 2022 +0100 +++ b/mod_dnsupdate/mod_dnsupdate.lua Fri Feb 04 16:25:23 2022 +0100 @@ -52,7 +52,7 @@ end local ihost = idna_to_ascii(vhost); if not ihost then - module:log("error", "Host %q falis IDNA", vhost); + module:log("error", "Host %q fails IDNA", vhost); return 1; end local is_component = config.get(vhost, "component_module");