]> git.ipfire.org Git - thirdparty/snort3.git/commitdiff
Merge pull request #930 in SNORT/snort3 from speling to master
authorTom Peters (thopeter) <thopeter@cisco.com>
Mon, 19 Jun 2017 16:20:49 +0000 (12:20 -0400)
committerTom Peters (thopeter) <thopeter@cisco.com>
Mon, 19 Jun 2017 16:20:49 +0000 (12:20 -0400)
Squashed commit of the following:

commit ab5686150760909495164bf70b3cde82ee34e512
Author: Russ Combs <rucombs@cisco.com>
Date:   Mon Jun 19 07:00:39 2017 -0400

    spell check: fix typos

src/service_inspectors/http_inspect/http_flow_data.h

index ef83f8950cf5e5b8d5e490b271896290896459c2..93a2d82fb512f18e697d6a3ebb61134816b1790f 100644 (file)
@@ -96,9 +96,9 @@ private:
     bool tcp_close[2] = { false, false };
     int32_t num_head_lines[2] = { HttpEnums::STAT_NOT_PRESENT, HttpEnums::STAT_NOT_PRESENT };
 
-    // Infractions and events are associated with a specfic message and are stored in the
+    // Infractions and events are associated with a specific message and are stored in the
     // transaction for that message. But StreamSplitter splits the start line before there is
-    // a transaction and needs a place to put the problems it finds. Hence infractons and events
+    // a transaction and needs a place to put the problems it finds. Hence infractions and events
     // are created before there is a transaction to associate them with and stored here until
     // attach_my_transaction() takes them away and resets these to nullptr. The accessor methods
     // hide this from StreamSplitter.