]> The Tcpdump Group git mirrors - tcpdump/commitdiff
minor typo: should be SPT instead of STP
authorhannes <hannes>
Wed, 7 Mar 2007 12:10:54 +0000 (12:10 +0000)
committerhannes <hannes>
Wed, 7 Mar 2007 12:10:54 +0000 (12:10 +0000)
print-stp.c

index 767dfd3292d3f9877d308225f325546e2573d6e8..7703a6b7cc8707be222cb178a97737c7ef31445e 100644 (file)
@@ -11,7 +11,7 @@
 
 #ifndef lint
 static const char rcsid[] _U_ =
-"@(#) $Header: /tcpdump/master/tcpdump/print-stp.c,v 1.16 2007-03-07 11:21:24 hannes Exp $";
+"@(#) $Header: /tcpdump/master/tcpdump/print-stp.c,v 1.17 2007-03-07 12:10:54 hannes Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -73,7 +73,7 @@ struct tok stp_bpdu_flag_values[] = {
 
 struct tok stp_bpdu_type_values[] = {
     { STP_BPDU_TYPE_CONFIG, "Config" },
-    { STP_BPDU_TYPE_RSTP, "Rapid SPT" },
+    { STP_BPDU_TYPE_RSTP, "Rapid STP" },
     { STP_BPDU_TYPE_TOPO_CHANGE, "Topology Change" },
     { 0, NULL}
 };
@@ -142,7 +142,7 @@ stp_print(const u_char *p, u_int length)
     
     stp_bpdu = (struct stp_bpdu_*)p;
 
-    /* Minimum SPT Frame size. */
+    /* Minimum STP Frame size. */
     if (length < 4)
         goto trunc;