From: Philippe Antoine Date: Thu, 17 Oct 2024 08:25:42 +0000 (+0200) Subject: enip/detect: remove double registration of enip_command keyword X-Git-Tag: suricata-8.0.0-beta1~780 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5fcf16d979fbb7e4d8ebff090d32942aed81e72;p=thirdparty%2Fsuricata.git enip/detect: remove double registration of enip_command keyword As found with ./src/suricata --list-keywords | sort | uniq -c | awk '$1 > 1' --- diff --git a/rust/src/enip/detect.rs b/rust/src/enip/detect.rs index 46361680a9..aee0afca6a 100644 --- a/rust/src/enip/detect.rs +++ b/rust/src/enip/detect.rs @@ -1558,22 +1558,6 @@ pub unsafe extern "C" fn ScDetectEnipRegister() { true, true, ); - let kw = SCSigTableElmt { - name: b"enip_command\0".as_ptr() as *const libc::c_char, - desc: b"rules for detecting EtherNet/IP command\0".as_ptr() as *const libc::c_char, - url: b"/rules/enip-keyword.html#enip_command\0".as_ptr() as *const libc::c_char, - AppLayerTxMatch: Some(command_match), - Setup: command_setup, - Free: Some(command_free), - flags: 0, - }; - G_ENIP_COMMAND_KW_ID = DetectHelperKeywordRegister(&kw); - G_ENIP_COMMAND_BUFFER_ID = DetectHelperBufferRegister( - b"enip.command\0".as_ptr() as *const libc::c_char, - ALPROTO_ENIP, - true, - true, - ); let kw = SCSigTableElmt { name: b"enip.cip_status\0".as_ptr() as *const libc::c_char, desc: b"rules for detecting EtherNet/IP cip_status\0".as_ptr() as *const libc::c_char,