aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/file_access.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-06-17 16:53:31 +0000
committerGuy Harris <guy@alum.mit.edu>2012-06-17 16:53:31 +0000
commitfc2d1024de86887c35c44bc52cac0482a792e3d4 (patch)
treecc29f444ecb376af44a719ae8c3efe201df42c82 /wiretap/file_access.c
parent2bd813507a5a42c298d09ac8d83ca1eebd8db277 (diff)
Forgot to use wtap_dump_can_write_encaps()'s final name.
svn path=/trunk/; revision=43317
Diffstat (limited to 'wiretap/file_access.c')
-rw-r--r--wiretap/file_access.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/wiretap/file_access.c b/wiretap/file_access.c
index 17a2e3cae6..fd3c9c70f1 100644
--- a/wiretap/file_access.c
+++ b/wiretap/file_access.c
@@ -814,19 +814,19 @@ wtap_get_savable_file_types(int file_type, const GArray *file_encaps)
int other_file_type = -1;
/* Can we save this file in its own file type? */
- if (wtap_dump_can_write(file_type, file_encaps)) {
+ if (wtap_dump_can_write_encaps(file_type, file_encaps)) {
/* Yes - make that the default file type. */
default_file_type = file_type;
} else {
/* No - can we save it as a pcap-NG file? */
- if (wtap_dump_can_write(WTAP_FILE_PCAPNG, file_encaps)) {
+ if (wtap_dump_can_write_encaps(WTAP_FILE_PCAPNG, file_encaps)) {
/* Yes - default to pcap-NG, instead. */
default_file_type = WTAP_FILE_PCAPNG;
} else {
/* OK, find the first file type we *can* save it as. */
default_file_type = -1;
for (ft = 0; ft < WTAP_NUM_FILE_TYPES; ft++) {
- if (wtap_dump_can_write(ft, file_encaps)) {
+ if (wtap_dump_can_write_encaps(ft, file_encaps)) {
/* OK, got it. */
default_file_type = ft;
}
@@ -848,10 +848,10 @@ wtap_get_savable_file_types(int file_type, const GArray *file_encaps)
/* If it's pcap, put pcap-NG right after it; otherwise, if it's
pcap-NG, put pcap right after it. */
if (default_file_type == WTAP_FILE_PCAP) {
- if (wtap_dump_can_write(WTAP_FILE_PCAPNG, file_encaps))
+ if (wtap_dump_can_write_encaps(WTAP_FILE_PCAPNG, file_encaps))
other_file_type = WTAP_FILE_PCAPNG;
} else if (default_file_type == WTAP_FILE_PCAPNG) {
- if (wtap_dump_can_write(WTAP_FILE_PCAP, file_encaps))
+ if (wtap_dump_can_write_encaps(WTAP_FILE_PCAP, file_encaps))
other_file_type = WTAP_FILE_PCAP;
}
if (other_file_type != -1)
@@ -863,7 +863,7 @@ wtap_get_savable_file_types(int file_type, const GArray *file_encaps)
continue; /* not a real file type */
if (ft == default_file_type || ft == other_file_type)
continue; /* we've already done this one */
- if (wtap_dump_can_write(ft, file_encaps)) {
+ if (wtap_dump_can_write_encaps(ft, file_encaps)) {
/* OK, we can write it out in this type. */
g_array_append_val(savable_file_types, ft);
}