Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Fix typo: stoping -> stopping #230

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/barnyard2.c
Original file line number Diff line number Diff line change
Expand Up @@ -1799,13 +1799,13 @@ static Barnyard2Config * MergeBarnyard2Confs(Barnyard2Config *cmd_line, Barnyard
if( config_file->alert_on_each_packet_in_stream_flag == 0)
{
LogMessage("[INFO]: Alerting on each packet in stream has been disabled by configuration file,\n"
"\tevents will only be outputed for the first matching event/packet,\n"
"\tevents will only be outputted for the first matching event/packet,\n"
"\tfurther packets matching previous processed events will be ignored");
}
else if( cmd_line->alert_on_each_packet_in_stream_flag == 0 )
{
LogMessage("[INFO]: Alerting on each packet in stream has been disabled by command line option,\n"
"\tevents will only be outputed for the first matching event/packet,\n"
"\tevents will only be outputted for the first matching event/packet,\n"
"\tfurther packets matching previous processed events will be ignored");

config_file->alert_on_each_packet_in_stream_flag = cmd_line->alert_on_each_packet_in_stream_flag;
Expand Down
6 changes: 3 additions & 3 deletions src/output-plugins/spo_database.c
Original file line number Diff line number Diff line change
Expand Up @@ -2448,7 +2448,7 @@ void Database(Packet *p, void *event, uint32_t event_type, void *arg)

if( event == NULL || p == NULL)
{
LogMessage("WARNING database [%s()]: Called with Event[0x%x] Event Type [%u] (P)acket [0x%x], information has not been outputed. \n",
LogMessage("WARNING database [%s()]: Called with Event[0x%x] Event Type [%u] (P)acket [0x%x], information has not been outputted. \n",
__FUNCTION__,
event,
event_type,
Expand Down Expand Up @@ -2521,14 +2521,14 @@ void Database(Packet *p, void *event, uint32_t event_type, void *arg)
{
/* XXX */
setTransactionCallFail(&data->dbRH[data->dbtype_id]);
FatalError("[dbProcessSignatureInformation()]: Failed, stoping processing \n");
FatalError("[dbProcessSignatureInformation()]: Failed, stopping processing \n");
}

if( dbProcessEventInformation(data,p,event,event_type,sig_id))
{
/* XXX */
setTransactionCallFail(&data->dbRH[data->dbtype_id]);
FatalError("[dbProcessEventInformation()]: Failed, stoping processing \n");
FatalError("[dbProcessEventInformation()]: Failed, stopping processing \n");
}


Expand Down