aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2010-04-29 23:53:57 +0000
committerGerald Combs <gerald@wireshark.org>2010-04-29 23:53:57 +0000
commit3c8db1cae53bc86f4f56585808ecb10b9c9af1b7 (patch)
tree86bd39400941136db2cc8e428b9a029865866d3e /gtk
parent8463e2e8bcf04000ea9601d4249ae39350eacbd2 (diff)
Several dissectors fill in custom custom data in the source and
destination address columns. Don't clobber it in the new packet list. svn path=/trunk/; revision=32609
Diffstat (limited to 'gtk')
-rw-r--r--gtk/packet_list_store.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/packet_list_store.c b/gtk/packet_list_store.c
index acf7d0f9a5..844959c7fc 100644
--- a/gtk/packet_list_store.c
+++ b/gtk/packet_list_store.c
@@ -683,7 +683,6 @@ packet_list_change_record(PacketList *packet_list, guint row, gint col, column_i
return;
switch (cfile.cinfo.col_fmt[col]) {
- case COL_DEF_SRC:
case COL_RES_SRC: /* COL_DEF_SRC is currently just like COL_RES_SRC */
case COL_UNRES_SRC:
case COL_DEF_DL_SRC:
@@ -692,7 +691,6 @@ packet_list_change_record(PacketList *packet_list, guint row, gint col, column_i
case COL_DEF_NET_SRC:
case COL_RES_NET_SRC:
case COL_UNRES_NET_SRC:
- case COL_DEF_DST:
case COL_RES_DST: /* COL_DEF_DST is currently just like COL_RES_DST */
case COL_UNRES_DST:
case COL_DEF_DL_DST:
@@ -709,6 +707,8 @@ packet_list_change_record(PacketList *packet_list, guint row, gint col, column_i
++packet_list->const_strings;
#endif
break;
+ case COL_DEF_SRC:
+ case COL_DEF_DST:
case COL_PROTOCOL:
case COL_INFO:
case COL_IF_DIR: