]> The Tcpdump Group git mirrors - tcpdump/commitdiff
typo in comment. from [email protected]
authoritojun <itojun>
Tue, 3 Oct 2000 02:19:04 +0000 (02:19 +0000)
committeritojun <itojun>
Tue, 3 Oct 2000 02:19:04 +0000 (02:19 +0000)
print-ah.c
print-esp.c
print-frag6.c
print-icmp6.c
print-ip6opts.c
print-ipcomp.c
print-rt6.c

index b7b8f284924a2ee6416e56f7b0e88465c6b45614..1bd1895467a4233827c885a088610f740ed938dd 100644 (file)
@@ -23,7 +23,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-ah.c,v 1.10 2000-09-29 04:58:33 guy Exp $ (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ah.c,v 1.11 2000-10-03 02:19:04 itojun Exp $ (LBL)";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -71,7 +71,7 @@ ah_print(register const u_char *bp, register const u_char *bp2)
        u_int32_t spi;
 
        ah = (struct ah *)bp;
-       ep = snapend;           /* 'ep' points to the end of avaible data. */
+       ep = snapend;           /* 'ep' points to the end of available data. */
 
        if ((u_char *)(ah + 1) >= ep - sizeof(struct ah))
                goto trunc;
index cf5f05e45a2324711676f9777f26518b1f7f11da..bf944392c89ab176270454954a20a1f9dc7c10f3 100644 (file)
@@ -23,7 +23,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-esp.c,v 1.11 2000-09-29 04:58:37 guy Exp $ (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-esp.c,v 1.12 2000-10-03 02:19:04 itojun Exp $ (LBL)";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -105,7 +105,7 @@ esp_print(register const u_char *bp, register const u_char *bp2, int *nhdr)
        esp = (struct esp *)bp;
        spi = (u_int32_t)ntohl(esp->esp_spi);
 
-       /* 'ep' points to the end of avaible data. */
+       /* 'ep' points to the end of available data. */
        ep = snapend;
 
        if ((u_char *)(esp + 1) >= ep - sizeof(struct esp)) {
index 7b4f31530a72976f3eda73de2329b778c17b55c8..b28689643d7eb9972460194f2ef470e7502efd18 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-frag6.c,v 1.10 2000-09-29 04:58:39 guy Exp $";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-frag6.c,v 1.11 2000-10-03 02:19:05 itojun Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -59,7 +59,7 @@ frag6_print(register const u_char *bp, register const u_char *bp2)
        dp = (struct ip6_frag *)bp;
        ip6 = (struct ip6_hdr *)bp2;
 
-       /* 'ep' points to the end of avaible data. */
+       /* 'ep' points to the end of available data. */
        ep = snapend;
 
        TCHECK(dp->ip6f_offlg);
index 79e6c6b0f63ba461910b19cc965b189a91972e71..fbc6c34bee2727efaa02e7541697dc6dfcda1206 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-icmp6.c,v 1.29 2000-10-03 02:17:50 itojun Exp $";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-icmp6.c,v 1.30 2000-10-03 02:19:05 itojun Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -124,7 +124,7 @@ icmp6_print(register const u_char *bp, register const u_char *bp2)
        ip = (struct ip6_hdr *)bp2;
        oip = (struct ip6_hdr *)(dp + 1);
        str = buf;
-       /* 'ep' points to the end of avaible data. */
+       /* 'ep' points to the end of available data. */
        ep = snapend;
        if (ip->ip6_plen)
                icmp6len = (ntohs(ip->ip6_plen) + sizeof(struct ip6_hdr) -
@@ -503,7 +503,7 @@ icmp6_opt_print(register const u_char *bp, int resid)
        oip = &dp->icmp6_ip6;
        str = buf;
 #endif
-       /* 'ep' points to the end of avaible data. */
+       /* 'ep' points to the end of available data. */
        ep = snapend;
 
        ECHECK(op->nd_opt_len);
@@ -619,7 +619,7 @@ mld6_print(register const u_char *bp)
        register struct mld6_hdr *mp = (struct mld6_hdr *)bp;
        register const u_char *ep;
 
-       /* 'ep' points to the end of avaible data. */
+       /* 'ep' points to the end of available data. */
        ep = snapend;
 
        if ((u_char *)mp + sizeof(*mp) > ep)
@@ -637,7 +637,7 @@ mld6_print(register const u_char *bp)
        register struct icmp6_mld *mp = (struct icmp6_mld *)bp;
        register const u_char *ep;
 
-       /* 'ep' points to the end of avaible data. */
+       /* 'ep' points to the end of available data. */
        ep = snapend;
 
        if ((u_char *)mp + sizeof(*mp) > ep)
index e087af3fc8e318e1baedf956629c35c865207f17..e87188a9df10394124dfb9d409c05a7424153c17 100644 (file)
@@ -33,7 +33,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-     "@(#) $Header: /tcpdump/master/tcpdump/print-ip6opts.c,v 1.5 2000-04-28 11:14:48 itojun Exp $";
+     "@(#) $Header: /tcpdump/master/tcpdump/print-ip6opts.c,v 1.6 2000-10-03 02:19:06 itojun Exp $";
 #endif
 
 #ifdef INET6
@@ -140,7 +140,7 @@ hbhopt_print(register const u_char *bp)
     register const u_char *ep;
     int hbhlen = 0;
 
-    /* 'ep' points to the end of avaible data. */
+    /* 'ep' points to the end of available data. */
     ep = snapend;
     TCHECK(dp->ip6h_len);
     hbhlen = (int)((dp->ip6h_len + 1) << 3);
@@ -163,7 +163,7 @@ dstopt_print(register const u_char *bp)
     register const u_char *ep;
     int dstoptlen = 0;
 
-    /* 'ep' points to the end of avaible data. */
+    /* 'ep' points to the end of available data. */
     ep = snapend;
     TCHECK(dp->ip6d_len);
     dstoptlen = (int)((dp->ip6d_len + 1) << 3);
index 90ac50b45acdfac65117de73f397f8774658c142..39739311a047f441fa24598e2b4f0867e1a0fba1 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.9 2000-09-29 04:58:41 guy Exp $";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.10 2000-10-03 02:19:06 itojun Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -70,7 +70,7 @@ ipcomp_print(register const u_char *bp, register const u_char *bp2, int *nhdr)
        ipcomp = (struct ipcomp *)bp;
        cpi = (u_int16_t)ntohs(ipcomp->comp_cpi);
 
-       /* 'ep' points to the end of avaible data. */
+       /* 'ep' points to the end of available data. */
        ep = snapend;
 
        if ((u_char *)(ipcomp + 1) >= ep - sizeof(struct ipcomp)) {
index 4ee3a3bf21cf20bd00df9ce39250a6fe3f655ff3..45144eef0add0244a33b0b15de46b012ef3c5ff9 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-rt6.c,v 1.14 2000-09-29 04:58:48 guy Exp $";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-rt6.c,v 1.15 2000-10-03 02:19:07 itojun Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -58,7 +58,7 @@ rt6_print(register const u_char *bp, register const u_char *bp2)
        ip = (struct ip6_hdr *)bp2;
        len = dp->ip6r_len;
 
-       /* 'ep' points to the end of avaible data. */
+       /* 'ep' points to the end of available data. */
        ep = snapend;
 
 #if 0