diff options
author | Guy Harris <guy@alum.mit.edu> | 2011-04-12 00:44:44 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2011-04-12 00:44:44 +0000 |
commit | 2b8ebd389bf1d706d6922940e69b89ff038bf9df (patch) | |
tree | 598ee6dae4cbe95a2d65910302f56df5c2dbf832 /wiretap/commview.c | |
parent | 793d683575966d990ce2e819bac5e1c214c6a9fa (diff) | |
download | wireshark-2b8ebd389bf1d706d6922940e69b89ff038bf9df.tar.gz wireshark-2b8ebd389bf1d706d6922940e69b89ff038bf9df.tar.bz2 wireshark-2b8ebd389bf1d706d6922940e69b89ff038bf9df.zip |
"This file format can't be written to a pipe" and "this file format
can't be saved in compress form" are both equivalent to "this file file
format requires seeking when writing it". Change the "can compress"
Boolean in the file format table to "writing requires seeking", give all
the entries the proper value, and do the checks for attempting to write
a file format to a pipe or write it in compressed format to common code.
This means we don't need to pass the "can't seek" flag to the dump open
routines.
svn path=/trunk/; revision=36575
Diffstat (limited to 'wiretap/commview.c')
-rw-r--r-- | wiretap/commview.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wiretap/commview.c b/wiretap/commview.c index 266132ecad..4b4781663d 100644 --- a/wiretap/commview.c +++ b/wiretap/commview.c @@ -300,8 +300,7 @@ int commview_dump_can_write_encap(int encap) /* Returns TRUE on success, FALSE on failure; sets "*err" to an error code on failure */ -gboolean commview_dump_open(wtap_dumper *wdh, gboolean cant_seek _U_, - int *err _U_) +gboolean commview_dump_open(wtap_dumper *wdh, int *err _U_) { wdh->subtype_write = commview_dump; wdh->subtype_close = NULL; |