summaryrefslogtreecommitdiff
path: root/tshark.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2007-03-26 23:16:53 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2007-03-26 23:16:53 +0000
commit910299acb14bc225edf27af8c4f979a51a7c7032 (patch)
tree81a9ba0235ebbd30338511e5bf657dc50b623b26 /tshark.c
parentd1bb540b7094d2e0034fb7236782ea67d61471c5 (diff)
downloadwireshark-910299acb14bc225edf27af8c4f979a51a7c7032.tar.gz
The signature for load_cap_file changed in 21211
Update also the code path for when not compiling with pcap so that code path also uses the new signature. svn path=/trunk/; revision=21219
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tshark.c b/tshark.c
index 83e066f1f3..fe964fefe2 100644
--- a/tshark.c
+++ b/tshark.c
@@ -1494,7 +1494,7 @@ main(int argc, char *argv[])
capture_opts.has_autostop_packets ? capture_opts.autostop_packets : 0,
capture_opts.has_autostop_filesize ? capture_opts.autostop_filesize : 0);
#else
- err = load_cap_file(&cfile, NULL, out_file_type);
+ err = load_cap_file(&cfile, NULL, out_file_type, 0, 0);
#endif
if (err != 0) {
epan_cleanup();