]> git.proxmox.com Git - mirror_frr.git/blobdiff - ospf6d/ospf6_top.c
*: use C99 standard fixed-width integer types
[mirror_frr.git] / ospf6d / ospf6_top.c
index 630b717fb3350082ab796bc12f6facacf799c5df..3f1b30b9e3a21f9f30f6e4faece055cab95b1c6d 100644 (file)
@@ -365,7 +365,7 @@ DEFUN(ospf6_router_id,
        int idx = 0;
        int ret;
        const char *router_id_str;
-       u_int32_t router_id;
+       uint32_t router_id;
        struct ospf6_area *oa;
        struct listnode *node;
 
@@ -663,7 +663,7 @@ DEFUN (ospf6_interface_area,
        struct ospf6_area *oa;
        struct ospf6_interface *oi;
        struct interface *ifp;
-       u_int32_t area_id;
+       uint32_t area_id;
 
        /* find/create ospf6 interface */
        ifp = if_get_by_name(argv[idx_ifname]->arg, VRF_DEFAULT, 0);
@@ -722,7 +722,7 @@ DEFUN (no_ospf6_interface_area,
        struct ospf6_interface *oi;
        struct ospf6_area *oa;
        struct interface *ifp;
-       u_int32_t area_id;
+       uint32_t area_id;
 
        ifp = if_lookup_by_name(argv[idx_ifname]->arg, VRF_DEFAULT);
        if (ifp == NULL) {