# HG changeset patch # User Kim Alvefur # Date 1699873374 -3600 # Node ID 655f90b149a4f407e5400fd0d8a7945775f777e5 # Parent 9bbf5b0673a24326fea788168cf51b054e91385b mod_audit: Pass IP address in string form Passing an util.ip object to :text_tag() would be an error. diff -r 9bbf5b0673a2 -r 655f90b149a4 mod_audit/mod_audit.lua --- a/mod_audit/mod_audit.lua Mon Nov 13 11:36:56 2023 +0100 +++ b/mod_audit/mod_audit.lua Mon Nov 13 12:02:54 2023 +0100 @@ -88,7 +88,7 @@ if attach_ipv4_prefix or attach_ipv6_prefix then network = get_ip_network(remote_ip); end - stanza:text_tag("remote-ip", network or remote_ip); + stanza:text_tag("remote-ip", network or remote_ip.normal); end if attach_location and session.ip then local remote_ip = ip.new_ip(session.ip);