mirror of
https://github.com/openwrt/packages.git
synced 2025-09-28 23:13:02 +00:00
When snort is run with the --version option, it advertises components' versions in the output. Add a patch to modify the output to clearly show vectorscan is in use. Signed-off-by: John Audia <therealgraysky@proton.me>
12 lines
473 B
Diff
12 lines
473 B
Diff
--- a/src/main/process.cc
|
|
+++ b/src/main/process.cc
|
|
@@ -704,7 +704,7 @@ int DisplayBanner()
|
|
LogMessage(" Copyright (C) 1998-2013 Sourcefire, Inc., et al.\n");
|
|
LogMessage(" Using DAQ version %s\n", daq_version_string());
|
|
#ifdef HAVE_HYPERSCAN
|
|
- LogMessage(" Using Hyperscan version %s\n", hs_version());
|
|
+ LogMessage(" Using Vectorscan version %s\n", hs_version());
|
|
#endif
|
|
#ifdef HAVE_JEMALLOC
|
|
const char* jv;
|