summaryrefslogtreecommitdiff
path: root/cfile.h
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-09-21 18:09:19 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-09-21 18:09:19 +0000
commit7ca137e2948dbdb74f04904d33c761ea77aea627 (patch)
tree18b1063186b52f672093c9d3de83af1ec2ff8a2c /cfile.h
parent109875c7757c713e3a8fbae51186bac98d9b0fed (diff)
downloadwireshark-7ca137e2948dbdb74f04904d33c761ea77aea627.tar.gz
Rename capture_file.plist to capture_file.plist_start to make it consistent with capture_file.plist_end
svn path=/trunk/; revision=30047
Diffstat (limited to 'cfile.h')
-rw-r--r--cfile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cfile.h b/cfile.h
index 122886b776..b3a2147347 100644
--- a/cfile.h
+++ b/cfile.h
@@ -75,7 +75,7 @@ typedef struct _capture_file {
/* packet data */
union wtap_pseudo_header pseudo_header; /* Packet pseudo_header */
guint8 pd[WTAP_MAX_PACKET_SIZE]; /* Packet data */
- /* memory chunks have been deprecated in favor of the slice allocator,
+ /* memory chunks have been deprecated in favor of the slice allocator,
* which has been added in 2.10
*/
#if GLIB_CHECK_VERSION(2,10,0)
@@ -83,7 +83,7 @@ typedef struct _capture_file {
#else
GMemChunk *plist_chunk; /* Memory chunk for frame_data structures */
#endif
- frame_data *plist; /* Packet list */
+ frame_data *plist_start; /* Packet list */
frame_data *plist_end; /* Last packet in list */
frame_data *first_displayed; /* First frame displayed */
frame_data *last_displayed; /* Last frame displayed */