]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
output/alert: spelling
authorVictor Julien <vjulien@oisf.net>
Fri, 5 May 2023 18:44:14 +0000 (20:44 +0200)
committerVictor Julien <vjulien@oisf.net>
Sat, 6 May 2023 12:50:43 +0000 (14:50 +0200)
src/alert-debuglog.c
src/alert-fastlog.c
src/alert-syslog.c
src/alert-syslog.h

index bb6d97bff279dc4d5501504c9120b4e6732e300f..15adc31d36f95e977674a41f78d26edecf885370 100644 (file)
@@ -69,7 +69,7 @@ typedef struct AlertDebugLogThread_ {
 /**
  *  \brief Function to log the FlowVars in to alert-debug.log
  *
- *  \param aft Pointer to AltertDebugLog Thread
+ *  \param aft Pointer to AlertDebugLog Thread
  *  \param p Pointer to the packet
  *
  */
@@ -117,7 +117,7 @@ static void AlertDebugLogFlowVars(AlertDebugLogThread *aft, const Packet *p)
 /**
  *  \brief Function to log the PktVars in to alert-debug.log
  *
- *  \param aft Pointer to AltertDebugLog Thread
+ *  \param aft Pointer to AlertDebugLog Thread
  *  \param p Pointer to the packet
  *
  */
@@ -385,7 +385,7 @@ static TmEcode AlertDebugLogThreadInit(ThreadVars *t, const void *initdata, void
         SCFree(aft);
         return TM_ECODE_FAILED;
     }
-    /** Use the Ouptut Context (file pointer and mutex) */
+    /** Use the Output Context (file pointer and mutex) */
     aft->file_ctx = ((OutputCtx *)initdata)->data;
 
     /* 1 mb seems sufficient enough */
index 148de0144e7fa12a49ccc31249fdc56b30a1c137..bfb7f8ffe8c4856f2e47858be3b434fec1ff57c2 100644 (file)
@@ -198,7 +198,7 @@ TmEcode AlertFastLogThreadInit(ThreadVars *t, const void *initdata, void **data)
         SCFree(aft);
         return TM_ECODE_FAILED;
     }
-    /** Use the Ouptut Context (file pointer and mutex) */
+    /** Use the Output Context (file pointer and mutex) */
     aft->file_ctx = ((OutputCtx *)initdata)->data;
 
     *data = (void *)aft;
index 39d0978f4477e364526726796af35b6550f9c987..9a0429b8eefe4994aec7e3b2aeb0625bf9d8d19c 100644 (file)
@@ -140,7 +140,7 @@ static OutputInitResult AlertSyslogInitCtx(ConfNode *conf)
 }
 
 /**
- * \brief Function to initialize the AlertSystlogThread and sets the output
+ * \brief Function to initialize the AlertSyslogThread and sets the output
  *        context pointer
  *
  * \param tv            Pointer to the threadvars
@@ -161,7 +161,7 @@ static TmEcode AlertSyslogThreadInit(ThreadVars *t, const void *initdata, void *
 
     memset(ast, 0, sizeof(AlertSyslogThread));
 
-    /** Use the Ouptut Context (file pointer and mutex) */
+    /** Use the Output Context (file pointer and mutex) */
     ast->file_ctx = ((OutputCtx *)initdata)->data;
 
     *data = (void *)ast;
@@ -169,7 +169,7 @@ static TmEcode AlertSyslogThreadInit(ThreadVars *t, const void *initdata, void *
 }
 
 /**
- * \brief Function to deinitialize the AlertSystlogThread
+ * \brief Function to deinitialize the AlertSyslogThread
  *
  * \param tv            Pointer to the threadvars
  * \param data          pointer to the AlertSyslogThread to be cleared
index 06890469fcfcebcfc312dec7ccb0554fa6766c3e..0655a3ae47cbc6c22034d946e79796f83a120a85 100644 (file)
@@ -20,7 +20,7 @@
  *
  * \author Gurvinder Singh <gurvindersinghdahiya@gmail.com>
  *
- * alert syslog modeule header file
+ * alert syslog module header file
  *
  */