diff options
author | Jeff Morriss <jeff.morriss.ws@gmail.com> | 2013-07-12 03:50:50 +0000 |
---|---|---|
committer | Jeff Morriss <jeff.morriss.ws@gmail.com> | 2013-07-12 03:50:50 +0000 |
commit | 4dcc156cf360c2e355349e539c28c867eef0f7d0 (patch) | |
tree | 195b81af7607fbee7fdb635c943214f1997ee936 /tshark.c | |
parent | 416c76a728a8a67b0473ed72b7ddc163739606aa (diff) | |
download | wireshark-4dcc156cf360c2e355349e539c28c867eef0f7d0.tar.gz wireshark-4dcc156cf360c2e355349e539c28c867eef0f7d0.tar.bz2 wireshark-4dcc156cf360c2e355349e539c28c867eef0f7d0.zip |
Move the print modules into epan.
svn path=/trunk/; revision=50526
Diffstat (limited to 'tshark.c')
-rw-r--r-- | tshark.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -68,7 +68,7 @@ #include <epan/disabled_protos.h> #include <epan/prefs.h> #include <epan/column.h> -#include "print.h" +#include <epan/print.h> #include <epan/addr_resolv.h> #include "ui/util.h" #include "clopts_common.h" @@ -3319,7 +3319,7 @@ write_preamble(capture_file *cf) switch (output_action) { case WRITE_TEXT: - return print_preamble(print_stream, cf ? cf->filename : NULL); + return print_preamble(print_stream, cf ? cf->filename : NULL, wireshark_svnversion); case WRITE_XML: if (print_details) |