From: Catalina Pineros Date: Wed, 11 Mar 2026 16:05:01 +0000 (-0400) Subject: fix error message typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e45af181d2d978cfd336875d29da8d4a6a32202b;p=thirdparty%2Ffreeradius-server.git fix error message typo --- diff --git a/src/listen/radius/proto_radius_tcp.c b/src/listen/radius/proto_radius_tcp.c index dc22cb329f6..ce73c3f0a37 100644 --- a/src/listen/radius/proto_radius_tcp.c +++ b/src/listen/radius/proto_radius_tcp.c @@ -462,7 +462,7 @@ static int mod_instantiate(module_inst_ctx_t const *mctx) s = getservbyname(inst->port_name, "tcp"); if (!s) { - cf_log_err(conf, "Unknown value for 'port_name = %s", inst->port_name); + cf_log_err(conf, "Unknown value for 'port_name = %s'", inst->port_name); return -1; } diff --git a/src/listen/radius/proto_radius_udp.c b/src/listen/radius/proto_radius_udp.c index e48f4112b3e..fc0f55ee390 100644 --- a/src/listen/radius/proto_radius_udp.c +++ b/src/listen/radius/proto_radius_udp.c @@ -472,7 +472,7 @@ static int mod_instantiate(module_inst_ctx_t const *mctx) s = getservbyname(inst->port_name, "udp"); if (!s) { - cf_log_err(conf, "Unknown value for 'port_name = %s", inst->port_name); + cf_log_err(conf, "Unknown value for 'port_name = %s'", inst->port_name); return -1; }