aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/packet_list.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-01-31 04:10:05 +0000
committerGuy Harris <guy@alum.mit.edu>2004-01-31 04:10:05 +0000
commitf914e6e9e7f3957fbd3a93ee107cc4c06901ca5b (patch)
treebb5fe5dd89c5d537fa6c919525754cfd5e948a73 /gtk/packet_list.c
parenta4464a67882161774cc0d00b75a0072ba2a61a27 (diff)
Fix the spelling of "cumulative" (and variables whose names derive from
that spelling). svn path=/trunk/; revision=9917
Diffstat (limited to 'gtk/packet_list.c')
-rw-r--r--gtk/packet_list.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/gtk/packet_list.c b/gtk/packet_list.c
index 4717586afb..9f816f6073 100644
--- a/gtk/packet_list.c
+++ b/gtk/packet_list.c
@@ -1,7 +1,7 @@
/* packet_list.c
* packet list related functions 2002 Olivier Abad
*
- * $Id: packet_list.c,v 1.14 2004/01/28 10:37:14 guy Exp $
+ * $Id: packet_list.c,v 1.15 2004/01/31 04:10:05 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -182,12 +182,11 @@ packet_list_compare(EthCList *clist, gconstpointer ptr1, gconstpointer ptr2)
fdata2->flags.ref_time, fdata2->del_secs,
fdata2->del_usecs);
-
case COL_PACKET_LENGTH:
return COMPARE_NUM(fdata1->pkt_len, fdata2->pkt_len);
- case COL_CULMULATIVE_BYTES:
- return COMPARE_NUM(fdata1->cul_bytes, fdata2->cul_bytes);
+ case COL_CUMULATIVE_BYTES:
+ return COMPARE_NUM(fdata1->cum_bytes, fdata2->cum_bytes);
default:
num1 = atof(text1);