]> The Tcpdump Group git mirrors - tcpdump/commitdiff
display cosmetics
authorhannes <hannes>
Fri, 30 Apr 2004 23:50:59 +0000 (23:50 +0000)
committerhannes <hannes>
Fri, 30 Apr 2004 23:50:59 +0000 (23:50 +0000)
print-ipx.c

index 16173dec5e58f089aaa53b60dfc4a1ce13a87194..67e1e6dbf8d5a733417219c551810db9f4adba14 100644 (file)
@@ -24,7 +24,7 @@
 
 #ifndef lint
 static const char rcsid[] _U_ =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.37 2004-04-30 22:22:05 hannes Exp $";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.38 2004-04-30 23:50:59 hannes Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -61,7 +61,7 @@ ipx_print(const u_char *p, u_int length)
                     ipxaddr_string(EXTRACT_32BITS(ipx->srcNet), ipx->srcNode),
                     EXTRACT_16BITS(&ipx->srcSkt));
 
-       (void)printf("%s.%04x:",
+       (void)printf("%s.%04x: ",
                     ipxaddr_string(EXTRACT_32BITS(ipx->dstNet), ipx->dstNode),
                     EXTRACT_16BITS(&ipx->dstSkt));
 
@@ -94,7 +94,7 @@ ipx_decode(const struct ipxHdr *ipx, const u_char *datap, u_int length)
     dstSkt = EXTRACT_16BITS(&ipx->dstSkt);
     switch (dstSkt) {
       case IPX_SKT_NCP:
-       (void)printf(" ipx-ncp %d", length);
+       (void)printf("ipx-ncp %d", length);
        break;
       case IPX_SKT_SAP:
        ipx_sap_print((u_short *)datap, length);
@@ -103,16 +103,16 @@ ipx_decode(const struct ipxHdr *ipx, const u_char *datap, u_int length)
        ipx_rip_print((u_short *)datap, length);
        break;
       case IPX_SKT_NETBIOS:
-       (void)printf(" ipx-netbios %d", length);
+       (void)printf("ipx-netbios %d", length);
 #ifdef TCPDUMP_DO_SMB
        ipx_netbios_print(datap, length);
 #endif
        break;
       case IPX_SKT_DIAGNOSTICS:
-       (void)printf(" ipx-diags %d", length);
+       (void)printf("ipx-diags %d", length);
        break;
       case IPX_SKT_NWLINK_DGM:
-       (void)printf(" ipx-nwlink-dgm %d", length);
+       (void)printf("ipx-nwlink-dgm %d", length);
 #ifdef TCPDUMP_DO_SMB
        ipx_netbios_print(datap, length);
 #endif
@@ -121,7 +121,7 @@ ipx_decode(const struct ipxHdr *ipx, const u_char *datap, u_int length)
         eigrp_print(datap,length);
        break;
       default:
-       (void)printf(" ipx-#%x %d", dstSkt, length);
+       (void)printf("ipx-#%x %d", dstSkt, length);
        break;
     }
 }