]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
flow: fix comment typos
authorVictor Julien <victor@inliniac.net>
Thu, 26 Jul 2018 08:47:52 +0000 (10:47 +0200)
committerVictor Julien <victor@inliniac.net>
Sat, 28 Jul 2018 12:27:11 +0000 (14:27 +0200)
src/flow.h

index 039cc906fa1d0b536e444de072e539af405f47e9..570911d62b403e6bc7410f4daea7b0c1b5d96f18 100644 (file)
@@ -42,9 +42,9 @@ typedef struct AppLayerParserState_ AppLayerParserState;
 
 /* per flow flags */
 
-/** At least on packet from the source address was seen */
+/** At least one packet from the source address was seen */
 #define FLOW_TO_SRC_SEEN                BIT_U32(0)
-/** At least on packet from the destination address was seen */
+/** At least one packet from the destination address was seen */
 #define FLOW_TO_DST_SEEN                BIT_U32(1)
 /** Don't return this from the flow hash. It has been replaced. */
 #define FLOW_TCP_REUSED                 BIT_U32(2)