]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
general: Correct typos
authorJeff Lucovsky <jeff@lucovsky.org>
Mon, 27 Jan 2020 00:39:15 +0000 (19:39 -0500)
committerVictor Julien <victor@inliniac.net>
Sat, 11 Jul 2020 06:36:52 +0000 (08:36 +0200)
src/detect-content.h
src/util-unittest.h

index a4ad39d407256946fd875367aa9e83bc62b5f0bc..d51df26beb9702cf751f14f7f56159a2855c98b9 100644 (file)
@@ -71,7 +71,7 @@
 
 /* if a pattern has no depth/offset limits, no relative specifiers and isn't
  * chopped for the mpm, we can take the mpm and consider this pattern a match
- * w/o futher inspection. Warning: this may still mean other patterns depend
+ * w/o further inspection. Warning: this may still mean other patterns depend
  * on this pattern that force match validation anyway. */
 #define DETECT_CONTENT_MPM_IS_CONCLUSIVE(c) \
                                     !( ((c)->flags & DETECT_CONTENT_DISTANCE) || \
@@ -93,7 +93,7 @@ typedef struct DetectContentData_ {
     uint16_t fp_chop_offset;
     /* would want to move PatIntId here and flags down to remove the padding
      * gap, but I think the first four members was used as a template for
-     * casting.  \todo check this and fix it if posssible */
+     * casting.  \todo check this and fix it if possible */
     uint32_t flags;
     PatIntId id;
     uint16_t depth;
index 4f3be006c8e41290b4cac2b53609835469b4d103..10e2c7ecdf8e8ca345e50c3929e78361dc498cdf 100644 (file)
@@ -55,7 +55,7 @@ void UtRunModeRegister(void);
 extern int unittests_fatal;
 
 /**
- * \breif Fail a test.
+ * \brief Fail a test.
  */
 #define FAIL do {                                      \
         if (unittests_fatal) {                         \