]> git.proxmox.com Git - mirror_frr.git/blobdiff - zebra/zebra_fpm_dt.c
Merge pull request #13403 from anlancs/fix/zebra-missing-vrf-flag
[mirror_frr.git] / zebra / zebra_fpm_dt.c
index 81437e72f511ebd5d0fbc1d039f3f2e9d9d2054b..94308a961b071242875e2bac4d1ea54deefbebc2 100644 (file)
@@ -1,25 +1,10 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
 /*
  * zebra_fpm_dt.c
  *
  * @copyright Copyright (C) 2016 Sproute Networks, Inc.
  *
  * @author Avneesh Sachdev <avneesh@sproute.com>
- *
- * This file is part of GNU Zebra.
- *
- * GNU Zebra is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation; either version 2, or (at your option) any
- * later version.
- *
- * GNU Zebra is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; see the file COPYING; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /*
@@ -181,6 +166,7 @@ static void zfpm_dt_log_fpm_message(Fpm__Message *msg)
        char *if_name;
        size_t i;
        char buf[INET6_ADDRSTRLEN];
+       char addr_buf[PREFIX_STRLEN];
        union g_addr nh_addr;
 
        if (msg->type != FPM__MESSAGE__TYPE__ADD_ROUTE)
@@ -213,7 +199,9 @@ static void zfpm_dt_log_fpm_message(Fpm__Message *msg)
 
                zfpm_debug("Nexthop - if_index: %d (%s), gateway: %s, ",
                           if_index, if_name ? if_name : "name not specified",
-                          nexthop->address ? inet_ntoa(nh_addr.ipv4) : "None");
+                          nexthop->address ?
+                          inet_ntop(AF_INET, &nh_addr.ipv4,
+                                    addr_buf, sizeof(addr_buf)) : "None");
        }
 }