aboutsummaryrefslogtreecommitdiffstats
path: root/tfshark.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-12-03 10:53:58 -0800
committerGuy Harris <guy@alum.mit.edu>2017-12-03 18:54:37 +0000
commiteb8ffb74e27523492855268abf5cb45927ffdb04 (patch)
tree3c6eb1e8a931a146a70e3dfe7836884b10c17d2c /tfshark.c
parent114c989fb37b25671d8886458b206f11471b3277 (diff)
Use cfile.h to define the capture_file type.
Have cfile-int.h declare the structure, and use it in files that directly access the structure. Have cfile.h just incompletely declare the structure and include it rather than explicitly declaring it in source files or other header files. Never directly refer to struct _capture_file except when typedeffing capture_file. Add #includes as necessary, now that cfile.h doesn't drag in a ton of Change-Id: I7931c8039d75ff7c980b0f2a6e221f20e602a556 Reviewed-on: https://code.wireshark.org/review/24686 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'tfshark.c')
-rw-r--r--tfshark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tfshark.c b/tfshark.c
index e7dedaf58e..ebbdfa2d8f 100644
--- a/tfshark.c
+++ b/tfshark.c
@@ -1026,7 +1026,7 @@ clean_exit:
}
static const nstime_t *
-tfshark_get_frame_ts(struct _capture_file *cf, guint32 frame_num)
+tfshark_get_frame_ts(capture_file *cf, guint32 frame_num)
{
if (ref && ref->num == frame_num)
return &ref->abs_ts;
@@ -1047,7 +1047,7 @@ tfshark_get_frame_ts(struct _capture_file *cf, guint32 frame_num)
}
static const char *
-no_interface_name(struct _capture_file *cf _U_, guint32 interface_id _U_)
+no_interface_name(capture_file *cf _U_, guint32 interface_id _U_)
{
return "";
}