diff --git a/gtk/rpc_progs.c b/gtk/rpc_progs.c index d101191bba..0dd360d9b3 100644 --- a/gtk/rpc_progs.c +++ b/gtk/rpc_progs.c @@ -1,7 +1,7 @@ /* rpc_progs.c * rpc_progs 2002 Ronnie Sahlberg * - * $Id: rpc_progs.c,v 1.2 2002/10/23 23:12:36 guy Exp $ + * $Id: rpc_progs.c,v 1.3 2002/10/23 23:17:11 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -37,6 +37,7 @@ #include "tap.h" #include "rpc_progs.h" #include "packet-rpc.h" +#include "../globals.h" static GtkWidget *win=NULL; static GtkWidget *table=NULL; @@ -371,5 +372,6 @@ gtk_rpcprogs_init(void) gtk_widget_show_all(win); + redissect_packets(&cfile); } diff --git a/gtk/rpc_stat.c b/gtk/rpc_stat.c index 2a4b209ba9..5b756a0245 100644 --- a/gtk/rpc_stat.c +++ b/gtk/rpc_stat.c @@ -1,7 +1,7 @@ /* rpc_stat.c * rpc_stat 2002 Ronnie Sahlberg * - * $Id: rpc_stat.c,v 1.3 2002/10/23 23:12:36 guy Exp $ + * $Id: rpc_stat.c,v 1.4 2002/10/23 23:17:11 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -38,7 +38,7 @@ #include "tap.h" #include "rpc_stat.h" #include "packet-rpc.h" - +#include "../globals.h" /* used to keep track of statistics for a specific procedure */ typedef struct _rpc_procedure_t { @@ -393,6 +393,7 @@ gtk_rpcstat_init(guint32 program, guint32 version, char *filter) gtk_widget_show_all(rs->win); + redissect_packets(&cfile); } diff --git a/gtk2/rpc_progs.c b/gtk2/rpc_progs.c index dc4479e673..0aaa564ef9 100644 --- a/gtk2/rpc_progs.c +++ b/gtk2/rpc_progs.c @@ -1,7 +1,7 @@ /* rpc_progs.c * rpc_progs 2002 Ronnie Sahlberg * - * $Id: rpc_progs.c,v 1.2 2002/10/23 23:12:38 guy Exp $ + * $Id: rpc_progs.c,v 1.3 2002/10/23 23:17:25 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -37,6 +37,7 @@ #include "tap.h" #include "rpc_progs.h" #include "packet-rpc.h" +#include "../globals.h" static GtkWidget *win=NULL; static GtkWidget *table=NULL; @@ -371,5 +372,6 @@ gtk_rpcprogs_init(void) gtk_widget_show_all(win); + redissect_packets(&cfile); } diff --git a/gtk2/rpc_stat.c b/gtk2/rpc_stat.c index 9c63bfa887..b6df67720e 100644 --- a/gtk2/rpc_stat.c +++ b/gtk2/rpc_stat.c @@ -1,7 +1,7 @@ /* rpc_stat.c * rpc_stat 2002 Ronnie Sahlberg * - * $Id: rpc_stat.c,v 1.3 2002/10/23 23:12:38 guy Exp $ + * $Id: rpc_stat.c,v 1.4 2002/10/23 23:17:26 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -38,6 +38,7 @@ #include "tap.h" #include "rpc_stat.h" #include "packet-rpc.h" +#include "../globals.h" /* used to keep track of statistics for a specific procedure */ @@ -393,6 +394,7 @@ gtk_rpcstat_init(guint32 program, guint32 version, char *filter) gtk_widget_show_all(rs->win); + redissect_packets(&cfile); }