Added PacketLogger to dump_open_table_base to be able to open pklg files

(and avoid crash).

svn path=/trunk/; revision=28137
This commit is contained in:
Stig Bjørlykke 2009-04-23 09:13:56 +00:00
parent 163ee4356b
commit 3fd6fbb69e
1 changed files with 4 additions and 1 deletions

View File

@ -598,7 +598,10 @@ static const struct file_type_info dump_open_table_base[] = {
{ "Transport-Neutral Encapsulation Format", "tnef", "*.*", NULL, FALSE, NULL, NULL },
/* WTAP_FILE_DCT3TRACE */
{ "Gammu DCT3 trace", "dct3trace", "*.xml", NULL, FALSE, NULL, NULL }
{ "Gammu DCT3 trace", "dct3trace", "*.xml", NULL, FALSE, NULL, NULL },
/* WTAP_FILE_PACKETLOGGER */
{ "PacketLogger", "pklg", "*.pklg", NULL, FALSE, NULL, NULL }
};
gint wtap_num_file_types = sizeof(dump_open_table_base) / sizeof(struct file_type_info);