]> git.proxmox.com Git - mirror_frr.git/blobdiff - pimd/pim_errors.c
zebra: Refactor kernel_rtm to be a bit smarter about how it handles options
[mirror_frr.git] / pimd / pim_errors.c
index 15f0345f0c7942f1f1b12dfd04c4c2288566b8b8..0674a4e99477f2b3fd2cb6cd3d34481afb5886f1 100644 (file)
 #include "pim_errors.h"
 
 /* clang-format off */
-static struct ferr_ref ferr_pim_err[] = {
+static struct log_ref ferr_pim_err[] = {
        {
-               .code = PIM_ERR_MSDP_PACKET,
+               .code = EC_PIM_MSDP_PACKET,
                .title = "PIM MSDP Packet Error",
                .description = "PIM has received a packet from a peer that does not correctly decode",
                .suggestion = "Check MSDP peer and ensure it is correctly working"
        },
        {
-               .code = PIM_ERR_CONFIG,
+               .code = EC_PIM_CONFIG,
                .title = "PIM Configuration Error",
-               .description = "Pim has detected a configuration error",
+               .description = "PIM has detected a configuration error",
                .suggestion = "Ensure the configuration is correct and apply correct configuration"
        },
        {
@@ -45,7 +45,5 @@ static struct ferr_ref ferr_pim_err[] = {
 
 void pim_error_init(void)
 {
-       ferr_ref_init();
-
-       ferr_ref_add(ferr_pim_err);
+       log_ref_add(ferr_pim_err);
 }