aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/expert_dlg.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2005-10-20 18:07:03 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2005-10-20 18:07:03 +0000
commit385fb3eea221f2274a0db75309f0edc4f61cbfb1 (patch)
tree96634ad4517e1256e381a7866cf9600345dd46a1 /gtk/expert_dlg.c
parentc5db51da2d5c79fa588dc0018587b38b5df1d2ae (diff)
From Greg Morris.
Expert data must perform a re-dissection to trigger the NCP dissector. Change the call cf_retap_packets() to cf_redissect_packets(). svn path=/trunk/; revision=16279
Diffstat (limited to 'gtk/expert_dlg.c')
-rw-r--r--gtk/expert_dlg.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/expert_dlg.c b/gtk/expert_dlg.c
index 9ea8d1cedd..b68faea117 100644
--- a/gtk/expert_dlg.c
+++ b/gtk/expert_dlg.c
@@ -576,7 +576,9 @@ expert_dlg_init(const char *optarg)
gtk_widget_show_all(etd->win);
window_present(etd->win);
- cf_retap_packets(&cfile, FALSE);
+ /* Re-dissect instead of just re-tapping, because of how NCP
+ * dissector works. */
+ cf_redissect_packets(&cfile);
}