]> git.proxmox.com Git - mirror_frr.git/blobdiff - qpb/qpb.h
Merge pull request #12791 from taspelund/loc_rib_json_fix
[mirror_frr.git] / qpb / qpb.h
index 9aeb7d01d4b8402c457df90921bb080605543ac9..d52528f41b83e31769be011ff307253af8a7981d 100644 (file)
--- a/qpb/qpb.h
+++ b/qpb/qpb.h
@@ -1,25 +1,10 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
 /*
  * qpb.h
  *
  * @copyright Copyright (C) 2016 Sproute Networks, Inc.
  *
  * @author Avneesh Sachdev <avneesh@sproute.com>
- *
- * This file is part of Quagga.
- *
- * Quagga 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.
- *
- * Quagga 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
  */
 
 /*
@@ -77,7 +62,7 @@ static inline int qpb__address_family__get(Qpb__AddressFamily pb_family,
 
        case QPB__ADDRESS_FAMILY__UNKNOWN_AF:
                return 0;
-       default: /* protobuf "magic value" _QPB__ADDRESS_FAMILY_IS_INT_SIZE */
+       case _QPB__ADDRESS_FAMILY_IS_INT_SIZE:
                return 0;
        }
 
@@ -121,11 +106,13 @@ static inline int qpb__l3_prefix__get(const Qpb__L3Prefix *pb_prefix,
        switch (family) {
 
        case AF_INET:
-               memset(prefix, 0, sizeof(struct prefix_ipv4));
+               memset((struct prefix_ipv4 *)prefix, 0,
+                      sizeof(struct prefix_ipv4));
                break;
 
        case AF_INET6:
-               memset(prefix, 0, sizeof(struct prefix_ipv6));
+               memset((struct prefix_ipv6 *)prefix, 0,
+                      sizeof(struct prefix_ipv6));
                break;
 
        default: