aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2014-09-11 17:27:08 +0100
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2014-09-11 16:29:37 +0000
commite485bcd6a68d62050f47e0007e50817df723b797 (patch)
treef0e393393e372220790f4fdd14d78a88da2fc3c0
parent94f90e547355f099cec321b020cd2c3165848632 (diff)
Fix an incorrect comment
Change-Id: Ic60c67fcc554b5ceb0b359a992fafd0f84521eef Reviewed-on: https://code.wireshark.org/review/4077 Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
-rw-r--r--epan/dissectors/packet-ipsec.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ipsec.c b/epan/dissectors/packet-ipsec.c
index d384f96b95..cbae3832b1 100644
--- a/epan/dissectors/packet-ipsec.c
+++ b/epan/dissectors/packet-ipsec.c
@@ -496,6 +496,8 @@ static guint word_hash_func(gconstpointer v)
}
/* Results are stored here: framenum -> spi_status */
+/* N.B. only store entries for out-of-order frames, if there is no entry for
+ a given frame, it was found to be in-order */
static GHashTable *esp_sequence_analysis_report_hash = NULL;
/* During the first pass, update the SPI state. If the sequence numbers
@@ -596,7 +598,7 @@ static gboolean g_esp_enable_authentication_check = FALSE;
*/
static gboolean g_esp_enable_null_encryption_decode_heuristic = FALSE;
-/* Default to not doing ESP sequence analysis */
+/* Default to doing ESP sequence analysis */
static gboolean g_esp_do_sequence_analysis = TRUE;
/* Place AH payload in sub tree */