diff --git a/CHANGES b/CHANGES index f80cbad8cf..274391a832 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +6.2.0-dev.490 | 2024-01-31 14:27:46 +0100 + + * spicy/diff-remove-timestamp: Fix missing -e (Arne Welzel, Corelight) + + This got lost when converting to sed -E. + 6.2.0-dev.487 | 2024-01-30 21:47:06 +0100 * quic: Log client's source connection id, too. (Arne Welzel, Corelight) diff --git a/VERSION b/VERSION index d40b2637fc..df3d986df2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.2.0-dev.487 +6.2.0-dev.490 diff --git a/testing/scripts/spicy/diff-remove-timestamps b/testing/scripts/spicy/diff-remove-timestamps index dc341b2189..048a3ec2c4 100755 --- a/testing/scripts/spicy/diff-remove-timestamps +++ b/testing/scripts/spicy/diff-remove-timestamps @@ -2,4 +2,4 @@ # # Replace anything which looks like timestamps with XXXs (including the #start/end markers in logs). -sed -E 's/(^|[^0-9])([0-9]{9,10}\.[0-9]{1,8})/\1XXXXXXXXXX.XXXXXX/g' -e 's/^ *#(open|close).(19|20)..-..-..-..-..-../#\1 XXXX-XX-XX-XX-XX-XX/g' +sed -E -e 's/(^|[^0-9])([0-9]{9,10}\.[0-9]{1,8})/\1XXXXXXXXXX.XXXXXX/g' -e 's/^ *#(open|close).(19|20)..-..-..-..-..-../#\1 XXXX-XX-XX-XX-XX-XX/g'