aboutsummaryrefslogtreecommitdiffstats
path: root/reordercap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-11-12 15:43:10 -0800
committerGuy Harris <guy@alum.mit.edu>2018-11-13 03:37:29 +0000
commit3faa45d4ec9214fbe4b15c3b6d9bc875f8fb780c (patch)
tree98cc11031a83c66e6bbbd22ebe6c3581ca9392be /reordercap.c
parentf070ad2c1eb2813be5d7e27b1e1bb7b844d8467e (diff)
Don't have _ng versions of the dumper open routines.
Have the routines always take a parameters pointer; pass either null or a pointer to an initialized-to-nothing structure in cases where we were calling the non-_ng versions. Change-Id: I23b779d87f3fbd29306ebe1df568852be113d3b2 Reviewed-on: https://code.wireshark.org/review/30590 Petri-Dish: Guy Harris <guy@alum.mit.edu> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'reordercap.c')
-rw-r--r--reordercap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/reordercap.c b/reordercap.c
index 466579a171..8b5710d019 100644
--- a/reordercap.c
+++ b/reordercap.c
@@ -287,11 +287,11 @@ main(int argc, char *argv[])
/* Open outfile (same filetype/encap as input file) */
if (strcmp(outfile, "-") == 0) {
- pdh = wtap_dump_open_stdout_ng(wtap_file_type_subtype(wth), wtap_file_encap(wth),
- wtap_snapshot_length(wth), FALSE, &ng_params, &err);
+ pdh = wtap_dump_open_stdout(wtap_file_type_subtype(wth), wtap_file_encap(wth),
+ wtap_snapshot_length(wth), FALSE, &ng_params, &err);
} else {
- pdh = wtap_dump_open_ng(outfile, wtap_file_type_subtype(wth), wtap_file_encap(wth),
- wtap_snapshot_length(wth), FALSE, &ng_params, &err);
+ pdh = wtap_dump_open(outfile, wtap_file_type_subtype(wth), wtap_file_encap(wth),
+ wtap_snapshot_length(wth), FALSE, &ng_params, &err);
}
g_free(ng_params.idb_inf);
ng_params.idb_inf = NULL;