From: Victor Julien Date: Fri, 5 May 2023 18:44:14 +0000 (+0200) Subject: output/alert: spelling X-Git-Tag: suricata-7.0.0-rc2~237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5dc0a1f53b2b9086ede01ac4391c8632ac6f1b27;p=thirdparty%2Fsuricata.git output/alert: spelling --- diff --git a/src/alert-debuglog.c b/src/alert-debuglog.c index bb6d97bff2..15adc31d36 100644 --- a/src/alert-debuglog.c +++ b/src/alert-debuglog.c @@ -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 */ diff --git a/src/alert-fastlog.c b/src/alert-fastlog.c index 148de0144e..bfb7f8ffe8 100644 --- a/src/alert-fastlog.c +++ b/src/alert-fastlog.c @@ -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; diff --git a/src/alert-syslog.c b/src/alert-syslog.c index 39d0978f44..9a0429b8ee 100644 --- a/src/alert-syslog.c +++ b/src/alert-syslog.c @@ -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 diff --git a/src/alert-syslog.h b/src/alert-syslog.h index 06890469fc..0655a3ae47 100644 --- a/src/alert-syslog.h +++ b/src/alert-syslog.h @@ -20,7 +20,7 @@ * * \author Gurvinder Singh * - * alert syslog modeule header file + * alert syslog module header file * */