Don't freeze/thaw the list when stoping a live capture.

svn path=/trunk/; revision=31754
This commit is contained in:
Anders Broman 2010-02-01 14:55:47 +00:00
parent fb9c5f1da3
commit bc80677038
1 changed files with 4 additions and 2 deletions

6
file.c
View File

@ -933,7 +933,8 @@ cf_finish_tail(capture_file *cf, int *err)
#ifdef NEW_PACKET_LIST
new_packet_list_check_end();
new_packet_list_freeze();
/* Don't freeze/thaw the list when doing live capture */
/*new_packet_list_freeze();*/
#else
packet_list_check_end();
packet_list_freeze();
@ -955,7 +956,8 @@ cf_finish_tail(capture_file *cf, int *err)
}
#ifdef NEW_PACKET_LIST
new_packet_list_thaw();
/* Don't freeze/thaw the list when doing live capture */
/*new_packet_list_thaw();*/
#else
packet_list_thaw();
#endif