diff options
author | Guy Harris <guy@alum.mit.edu> | 2006-10-19 21:17:23 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2006-10-19 21:17:23 +0000 |
commit | 1eefc6d60e757e99ed889de27591dce0caf9819d (patch) | |
tree | 08e289e65f097dbabdae1b24036baaa1f4c7b1e1 /tshark.c | |
parent | 0a069f6785961ab62dbeaa3410794b268ddcafe0 (diff) | |
download | wireshark-1eefc6d60e757e99ed889de27591dce0caf9819d.tar.gz wireshark-1eefc6d60e757e99ed889de27591dce0caf9819d.tar.bz2 wireshark-1eefc6d60e757e99ed889de27591dce0caf9819d.zip |
Clean up the word wrap stuff a bit. (Arguably, that should be done in
the code that displays it - we might, for example, be able to have the
About dialog word-wrap to the appropriate size, and word-wrap text
printed to the standard output to the terminal width if it's going to a
terminal and to 80 or whatever columns otherwise.)
Don't report anything in dumpcap about libraries not used by dumpcap.
(It was printing a blank, which looked a bit weird.)
Fix the handling of _MSC_VER as per Gerald's fix for _MSC_FULL_VER.
svn path=/trunk/; revision=19618
Diffstat (limited to 'tshark.c')
-rw-r--r-- | tshark.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -882,7 +882,7 @@ main(int argc, char *argv[]) /* Assemble the compile-time version information string */ comp_info_str = g_string_new("Compiled "); - get_compiled_version_info(comp_info_str, NULL); + get_compiled_version_info(comp_info_str, get_epan_compiled_version_info); /* Assemble the run-time version information string */ runtime_info_str = g_string_new("Running "); |