Add (missing) "mime" entry to encap_table_base[].

svn path=/trunk/; revision=39796
This commit is contained in:
Bill Meier 2011-11-11 22:21:06 +00:00
parent ac507aa5e7
commit d1d9cf61c7
1 changed files with 6 additions and 3 deletions

View File

@ -501,9 +501,12 @@ static struct encap_type_info encap_table_base[] = {
/* WTAP_ENCAP_DVBCI */
{ "DVB-CI (Common Interface)", "dvbci"},
/* WTAP_ENCAP_MUX27010 */
{ "MUX27010", "mux27010"}
/* WTAP_ENCAP_MUX27010 */
{ "MUX27010", "mux27010"},
/* WTAP_ENCAP_MIME */
{ "MIME", "mime"}
};
gint wtap_num_encap_types = sizeof(encap_table_base) / sizeof(struct encap_type_info);