Skip to content

Commit 9816991

Browse files
committed
minor fixes for v4.5.0
1 parent 50c9f4a commit 9816991

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl $Id$
44
AC_PREREQ([2.69])
55

66
dnl Set version info here!
7-
AC_INIT([tcpreplay],[4.5.2-beta3],[https://github.com/appneta/tcpreplay/issues],[tcpreplay],[http://tcpreplay.sourceforge.net/])
7+
AC_INIT([tcpreplay],[4.5.2],[https://github.com/appneta/tcpreplay/issues],[tcpreplay],[http://tcpreplay.sourceforge.net/])
88
AC_CONFIG_SRCDIR([src/tcpreplay.c])
99
AC_CONFIG_HEADERS([src/config.h])
1010
AC_CONFIG_AUX_DIR(config)

docs/CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
08/25/2025 Version 4.5.2 - beta3
1+
08/26/2025 Version 4.5.2
22
- C23 standard support (#977)
33
- --fixlen use-after-free (#970)
44
- gcc 15 out-of-tree build failure (#967)

src/tcpedit/plugins/dlt_jnpr_ether/jnpr_ether.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ dlt_jnpr_ether_decode(tcpeditdlt_t *ctx, const u_char *packet, int pktlen)
267267
}
268268

269269
if (dlt != DLT_EN10MB || encapsulation != 14) {
270-
tcpedit_setwarn(ctx->tcpedit, "packet DLT %d and extension type %d not supported",
271-
dlt, extension);
270+
tcpedit_setwarn(ctx->tcpedit, "packet DLT %d and encapsulation type %u not supported",
271+
dlt, encapsulation);
272272
return TCPEDIT_WARN;
273273
}
274274

0 commit comments

Comments
 (0)