aboutsummaryrefslogtreecommitdiffstats
path: root/cfile.h
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2021-07-08 01:11:23 -0700
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-07-08 08:30:41 +0000
commit831f6233ad5a74915b2db48b6652db149e2e2324 (patch)
tree50141fb61b87fe7e09e5e49f0c8e49a7d28829ba /cfile.h
parent53f31f100fb52d2e118bdff5ee3904958779bbab (diff)
Change "edited" to "modified" in one more place when referring to blocks.
Modifications aren't necessarily the result of a user editing something.
Diffstat (limited to 'cfile.h')
-rw-r--r--cfile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cfile.h b/cfile.h
index 99d0ef59da..08307ac3db 100644
--- a/cfile.h
+++ b/cfile.h
@@ -54,12 +54,12 @@ typedef enum {
* Packet provider for programs using a capture file.
*/
struct packet_provider_data {
- wtap *wth; /* Wiretap session */
+ wtap *wth; /* Wiretap session */
const frame_data *ref;
frame_data *prev_dis;
frame_data *prev_cap;
- frame_data_sequence *frames; /* Sequence of frames, if we're keeping that information */
- GTree *frames_edited_blocks; /* BST with changed blocks for frames (key = frame_data) */
+ frame_data_sequence *frames; /* Sequence of frames, if we're keeping that information */
+ GTree *frames_modified_blocks; /* BST with modified blocks for frames (key = frame_data) */
};
typedef struct _capture_file {