]> git.proxmox.com Git - mirror_frr.git/commitdiff
isisd: Log messages should not have newlines in them.
authorDonald Sharp <sharpd@nvidia.com>
Tue, 18 Jan 2022 19:06:38 +0000 (14:06 -0500)
committerDonald Sharp <sharpd@nvidia.com>
Tue, 18 Jan 2022 19:06:38 +0000 (14:06 -0500)
Fixes the compile failing because log messages were introduced
with newlines where in them.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
isisd/isis_nb_config.c

index b1c7966681331d8797de94813cd88e0b944e2720..019c26687bd86330502bfddc05d7a6565edac835 100644 (file)
@@ -2012,12 +2012,12 @@ int isis_instance_mpls_te_export_modify(struct nb_cb_modify_args *args)
                if (IS_DEBUG_EVENTS)
                        zlog_debug("MPLS-TE: Enabled Link State export");
                if (isis_zebra_ls_register(true) != 0)
-                       zlog_warn("Unable to register Link State\n");
+                       zlog_warn("Unable to register Link State");
        } else {
                if (IS_DEBUG_EVENTS)
                        zlog_debug("MPLS-TE: Disable Link State export");
                if (isis_zebra_ls_register(false) != 0)
-                       zlog_warn("Unable to register Link State\n");
+                       zlog_warn("Unable to register Link State");
        }
 
        return NB_OK;