]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-mpls.c
CHANGES: Move change(s) backported to 4.99
[tcpdump] / print-mpls.c
index 43ea1511faf71b5e4b22af48448e447d53663dcd..a80b722fa7e75c2db92805346f257cb65eb643a5 100644 (file)
@@ -28,9 +28,7 @@
 
 /* \summary: Multi-Protocol Label Switching (MPLS) printer */
 
-#ifdef HAVE_CONFIG_H
 #include <config.h>
-#endif
 
 #include "netdissect-stdinc.h"
 
@@ -75,7 +73,7 @@ mpls_print(netdissect_options *ndo, const u_char *bp, u_int length)
                label_entry = GET_BE_U_4(p);
                ND_PRINT("%s(label %u",
                       (label_stack_depth && ndo->ndo_vflag) ? "\n\t" : " ",
-                              MPLS_LABEL(label_entry));
+                       MPLS_LABEL(label_entry));
                label_stack_depth++;
                if (ndo->ndo_vflag &&
                    MPLS_LABEL(label_entry) < sizeof(mpls_labelname) / sizeof(mpls_labelname[0]))