aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/follow_stream.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2013-07-12 03:50:50 +0000
committerJeff Morriss <jeff.morriss.ws@gmail.com>2013-07-12 03:50:50 +0000
commit4dcc156cf360c2e355349e539c28c867eef0f7d0 (patch)
tree195b81af7607fbee7fdb635c943214f1997ee936 /ui/gtk/follow_stream.c
parent416c76a728a8a67b0473ed72b7ddc163739606aa (diff)
Move the print modules into epan.
svn path=/trunk/; revision=50526
Diffstat (limited to 'ui/gtk/follow_stream.c')
-rw-r--r--ui/gtk/follow_stream.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/gtk/follow_stream.c b/ui/gtk/follow_stream.c
index e08ae18420..f43fdaf7f5 100644
--- a/ui/gtk/follow_stream.c
+++ b/ui/gtk/follow_stream.c
@@ -40,7 +40,7 @@
#include <epan/charsets.h>
#include <../isprint.h>
-#include <../print.h>
+#include <epan/print.h>
#include <ui/alert_box.h>
#include <ui/last_open_dir.h>
@@ -64,6 +64,8 @@
#include "ui/win32/print_win32.h"
#endif
+#include "version_info.h"
+
/* static variable declarations to speed up the performance
* of follow_load_text and follow_add_to_gtk_text
*/
@@ -459,7 +461,7 @@ follow_print_stream(GtkWidget * w _U_, gpointer data)
return;
}
- if (!print_preamble(stream, cfile.filename))
+ if (!print_preamble(stream, cfile.filename, wireshark_svnversion))
goto print_error;
switch (follow_read_stream(follow_info, follow_print_text, stream)) {