]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-ospf.c
BGP: Fix parsing the AIGP attribute
[tcpdump] / print-ospf.c
index a385d7a1bfde05009150a4f25a4058e264a7a118..d3f519c3bb223a351f40fec265bd0e3dfae201f2 100644 (file)
@@ -61,6 +61,7 @@ static const struct tok ospf_rla_flag_values[] = {
        { RLA_FLAG_E,           "ASBR" },
        { RLA_FLAG_W1,          "Virtual" },
        { RLA_FLAG_W2,          "W2" },
+       { RLA_FLAG_NT,          "Nt" },
        { 0,                    NULL }
 };
 
@@ -533,11 +534,11 @@ ospf_print_lshdr(netdissect_options *ndo,
                     sizeof(struct lsa_hdr));
                 return(-1);
         }
-        ND_PRINT("\n\t  Advertising Router %s, seq 0x%08x, age %us, length %u",
+        ND_PRINT("\n\t  Advertising Router %s, seq 0x%08x, age %us, length %zu",
                   GET_IPADDR_STRING(lshp->ls_router),
                   GET_BE_U_4(lshp->ls_seq),
                   GET_BE_U_2(lshp->ls_age),
-                  ls_length - (u_int)sizeof(struct lsa_hdr));
+                  ls_length - sizeof(struct lsa_hdr));
         ls_type = GET_U_1(lshp->ls_type);
         switch (ls_type) {
         /* the LSA header for opaque LSAs was slightly changed */
@@ -1142,7 +1143,7 @@ ospf_print(netdissect_options *ndo,
 
                case OSPF_AUTH_SIMPLE:
                        ND_PRINT("\n\tSimple text password: ");
-                       (void)nd_printzp(ndo, op->ospf_authdata, OSPF_AUTH_SIMPLE_LEN, NULL);
+                       nd_printjnp(ndo, op->ospf_authdata, OSPF_AUTH_SIMPLE_LEN);
                        break;
 
                case OSPF_AUTH_MD5: