From 0ebeaf4fe457dbfd013930bdf33c3d02c3433073 Mon Sep 17 00:00:00 2001 From: Shivani Bhardwaj Date: Wed, 8 Jul 2020 12:41:43 +0530 Subject: [PATCH] modbus: align comments properly --- src/detect-modbus.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/detect-modbus.h b/src/detect-modbus.h index 2a86052ac5..2686e21f65 100644 --- a/src/detect-modbus.h +++ b/src/detect-modbus.h @@ -50,14 +50,14 @@ typedef struct DetectModbusValue_ { } DetectModbusValue; typedef struct DetectModbus_ { - uint8_t category; /** < Modbus function code category to match */ - uint8_t function; /** < Modbus function code to match */ - uint16_t subfunction; /** < Modbus subfunction to match */ - bool has_subfunction; /** < Modbus subfunction indicator */ - uint8_t type; /** < Modbus access type to match */ - DetectModbusValue *unit_id; /** < Modbus unit id to match */ - DetectModbusValue *address; /** < Modbus address to match */ - DetectModbusValue *data; /** < Modbus data to match */ + uint8_t category; /** < Modbus function code category to match */ + uint8_t function; /** < Modbus function code to match */ + uint16_t subfunction; /** < Modbus subfunction to match */ + bool has_subfunction; /** < Modbus subfunction indicator */ + uint8_t type; /** < Modbus access type to match */ + DetectModbusValue *unit_id; /** < Modbus unit id to match */ + DetectModbusValue *address; /** < Modbus address to match */ + DetectModbusValue *data; /** < Modbus data to match */ } DetectModbus; /* prototypes */ -- 2.47.2