aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-02-08 20:29:25 -0800
committerGuy Harris <guy@alum.mit.edu>2018-02-09 04:30:44 +0000
commit228b122dc973916b7ee532567945845c50ff27fa (patch)
treeb3a4fa9517b58de50951e30604ab54ccdb9c81d9 /wiretap/wtap.c
parent9425d6e9014895fca1301a2d4f5689cead37f1a2 (diff)
Rename ft_specific_data to reflect what we're actually using it for.
It's only being used as a working buffer to hold the raw options data we read in. Change-Id: I17b812e447f575ad92394b9f957658fc655cdf8e Reviewed-on: https://code.wireshark.org/review/25701 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r--wiretap/wtap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c
index 896e66e62a..7c61cfd2f5 100644
--- a/wiretap/wtap.c
+++ b/wiretap/wtap.c
@@ -1370,13 +1370,13 @@ void
wtap_rec_init(wtap_rec *rec)
{
memset(rec, 0, sizeof *rec);
- ws_buffer_init(&rec->ft_specific_data, 0);
+ ws_buffer_init(&rec->options_buf, 0);
}
void
wtap_rec_cleanup(wtap_rec *rec)
{
- ws_buffer_free(&rec->ft_specific_data);
+ ws_buffer_free(&rec->options_buf);
}
gboolean