aboutsummaryrefslogtreecommitdiffstats
path: root/ui/text_import.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/text_import.c')
-rw-r--r--ui/text_import.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/text_import.c b/ui/text_import.c
index 186a95648a..da67324423 100644
--- a/ui/text_import.c
+++ b/ui/text_import.c
@@ -384,7 +384,7 @@ number_of_padding_bytes (guint32 length)
/*----------------------------------------------------------------------
* Write current packet out
*/
-void
+static void
write_current_packet (void)
{
int prefix_length = 0;
@@ -1117,6 +1117,9 @@ text_import(text_import_info_t *info)
max_offset = info->max_frame_length;
ret = text_import_scan(info->import_text_file);
+ if (ret == 0) {
+ write_current_packet();
+ }
g_free(packet_buf);
return ret;
}