]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-mpls.c
Add more nd_print_trunc() calls
[tcpdump] / print-mpls.c
index 18f0c7b57a916cb266c2052227691acc86686a03..e45f2826ffb33db9c9fd063ba2adba14a4240de9 100644 (file)
@@ -29,7 +29,7 @@
 /* \summary: Multi-Protocol Label Switching (MPLS) printer */
 
 #ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
 #endif
 
 #include "netdissect-stdinc.h"
@@ -64,6 +64,7 @@ mpls_print(netdissect_options *ndo, const u_char *bp, u_int length)
        uint16_t label_stack_depth = 0;
        enum mpls_packet_type pt = PT_UNKNOWN;
 
+       ndo->ndo_protocol = "mpls";
        p = bp;
        ND_PRINT("MPLS");
        do {
@@ -210,13 +211,5 @@ mpls_print(netdissect_options *ndo, const u_char *bp, u_int length)
        return;
 
 trunc:
-       ND_PRINT("[|MPLS]");
+       nd_print_trunc(ndo);
 }
-
-
-/*
- * Local Variables:
- * c-style: whitesmith
- * c-basic-offset: 8
- * End:
- */