]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Remove spurious warning
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 29 Oct 2018 23:05:28 +0000 (19:05 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 29 Oct 2018 23:05:28 +0000 (19:05 -0400)
src/modules/proto_radius/proto_radius.c

index c1626dca1967c7fed20ce0de73c5a26e426b5789..8d544a8f9b19a0d05bd7cd76f0f9b49985b0d5e0 100644 (file)
@@ -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;
                }