Fix capinfo: ** ERROR **: Unknown capture file type 61

svn path=/trunk/; revision=37643
This commit is contained in:
Jakub Zawadzki 2011-06-10 07:16:10 +00:00
parent d2629a5335
commit c54afc05e7
1 changed files with 5 additions and 1 deletions

View File

@ -645,7 +645,11 @@ static const struct file_type_info dump_open_table_base[] = {
/* WTAP_FILE_IPFIX */
{ "IPFIX File Format", "ipfix", "*.pfx;*.ipfix", NULL, FALSE, FALSE,
NULL, NULL }
NULL, NULL },
/* WTAP_ENCAP_MIME */
{ "MIME File Format", "mime", NULL, NULL, FALSE, FALSE,
NULL, NULL }
};
gint wtap_num_file_types = sizeof(dump_open_table_base) / sizeof(struct file_type_info);