From: Arran Cudbard-Bell Date: Mon, 29 Oct 2018 23:05:28 +0000 (-0400) Subject: Remove spurious warning X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cedecf753e0a9644b401dfd1a7f30bb1b37110e;p=thirdparty%2Ffreeradius-server.git Remove spurious warning --- diff --git a/src/modules/proto_radius/proto_radius.c b/src/modules/proto_radius/proto_radius.c index c1626dca196..8d544a8f9b1 100644 --- a/src/modules/proto_radius/proto_radius.c +++ b/src/modules/proto_radius/proto_radius.c @@ -686,7 +686,7 @@ static int mod_instantiate(void *instance, CONF_SECTION *conf) if ((strcmp(name, "recv") == 0) && (dv->value->vb_uint32 <= FR_CODE_MAX) && fr_request_packets[dv->value->vb_uint32] && !inst->code_allowed[dv->value->vb_uint32]) { - cf_log_warn(subcs, "Skipping %s %s { ...}", name, packet_type); + /* Don't emit warnings here - likely handled by a different listen section */ continue; }