From 2b8ebd389bf1d706d6922940e69b89ff038bf9df Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 12 Apr 2011 00:44:44 +0000 Subject: "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 --- wiretap/nettl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wiretap/nettl.h') diff --git a/wiretap/nettl.h b/wiretap/nettl.h index be65ab63f5..6fca41f44b 100644 --- a/wiretap/nettl.h +++ b/wiretap/nettl.h @@ -126,7 +126,7 @@ #define NETTL_HDR_PDU_MASK 0x30000000 int nettl_open(wtap *wth, int *err, gchar **err_info); -gboolean nettl_dump_open(wtap_dumper *wdh, gboolean cant_seek _U_, int *err); +gboolean nettl_dump_open(wtap_dumper *wdh, int *err); int nettl_dump_can_write_encap(int encap); #endif -- cgit v1.2.1