aboutsummaryrefslogtreecommitdiffstats
path: root/column.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-31 04:10:05 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-31 04:10:05 +0000
commitcd469fbaed3fca919aa2093e51e55944f9a9f80c (patch)
treebb5fe5dd89c5d537fa6c919525754cfd5e948a73 /column.c
parent370b0e877fe6b545f642fee1b7514a9c8eb4a241 (diff)
Fix the spelling of "cumulative" (and variables whose names derive from
that spelling). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9917 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'column.c')
-rw-r--r--column.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/column.c b/column.c
index 6396348814..c92b392acd 100644
--- a/column.c
+++ b/column.c
@@ -1,7 +1,7 @@
/* column.c
* Routines for handling column preferences
*
- * $Id: column.c,v 1.45 2004/01/19 03:46:41 ulfl Exp $
+ * $Id: column.c,v 1.46 2004/01/31 04:10:04 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -97,7 +97,7 @@ static gchar *dlist[NUM_COL_FMTS] = {
"Protocol",
"Information",
"Packet length (bytes)" ,
- "Culmulative Bytes" ,
+ "Cumulative Bytes" ,
"OXID",
"RXID",
"FW-1 monitor if/direction",
@@ -263,7 +263,7 @@ get_column_longest_string(gint format)
case COL_PACKET_LENGTH:
return "000000";
break;
- case COL_CULMULATIVE_BYTES:
+ case COL_CUMULATIVE_BYTES:
return "00000000";
break;
case COL_RXID:
@@ -397,7 +397,7 @@ get_column_format_from_str(gchar *str) {
return COL_PACKET_LENGTH;
break;
case 'B':
- return COL_CULMULATIVE_BYTES;
+ return COL_CUMULATIVE_BYTES;
break;
case 'X':
prev_code = COL_OXID;