aboutsummaryrefslogtreecommitdiffstats
path: root/editcap.c
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2021-06-17 13:52:45 -0700
committerGuy Harris <gharris@sonic.net>2021-06-17 13:52:45 -0700
commit6eb3703379e027be51636d7f173ed50843a05c34 (patch)
tree0167c6840c33356ed655bb2f37549e18967f3c2a /editcap.c
parent829082c1917a66a007f774a5d9b98738b5ed31d0 (diff)
Make various names match the name of the systemd journal export block.
The name of the block, in the pcapng specification is the systemd Journal Export Block; add "export" after "journal" in various variable/enum/define names.
Diffstat (limited to 'editcap.c')
-rw-r--r--editcap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/editcap.c b/editcap.c
index dacc84c833..4f0df54118 100644
--- a/editcap.c
+++ b/editcap.c
@@ -2097,8 +2097,8 @@ main(int argc, char *argv[])
do_mutation = TRUE;
break;
- case REC_TYPE_SYSTEMD_JOURNAL:
- caplen = rec->rec_header.systemd_journal_header.record_len;
+ case REC_TYPE_SYSTEMD_JOURNAL_EXPORT:
+ caplen = rec->rec_header.systemd_journal_export_header.record_len;
do_mutation = TRUE;
break;
}