aboutsummaryrefslogtreecommitdiffstats
path: root/ui/text_import.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-10-16 21:50:57 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-10-16 21:50:57 +0000
commit78631020b83c7aab12934f0cff72dbb5e3f0ba4a (patch)
tree826f6248fcdb37ec849abebc3bdcc650e0df6c61 /ui/text_import.c
parentd7ae273d7a2373ab6fcc1c58d235b4a7dc4df0e9 (diff)
Add wtap_pseudo_header union to wtap_pkthdr structure.
Use pkthdr instead of pseudo_header as argument for dissecting. svn path=/trunk/; revision=45601
Diffstat (limited to 'ui/text_import.c')
-rw-r--r--ui/text_import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/text_import.c b/ui/text_import.c
index 912022425e..c8a122f4ba 100644
--- a/ui/text_import.c
+++ b/ui/text_import.c
@@ -531,7 +531,7 @@ write_current_packet (void)
pkthdr.pack_flags = 0;
pkthdr.presence_flags = WTAP_HAS_CAP_LEN|WTAP_HAS_INTERFACE_ID|WTAP_HAS_TS;
- wtap_dump(wdh, &pkthdr, NULL, packet_buf, &err);
+ wtap_dump(wdh, &pkthdr, packet_buf, &err);
}
}