From: Arushi Singhal Date: Thu, 30 Mar 2017 09:04:05 +0000 (+0530) Subject: iptables: extensions: Remove typedef in struct. X-Git-Tag: v1.6.2~54 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=27f69f4a1ee983bda0cc72198622fc3498e34ddb;p=thirdparty%2Fiptables.git iptables: extensions: Remove typedef in struct. The Linux kernel coding style guidelines suggest not using typedefs for structure. This patch gets rid of the typedefs for "_code". The following Coccinelle semantic patch detects the cases for struct type: @tn@ identifier i; type td; @@ -typedef struct i { ... } -td ; @@ type tn.td; identifier tn.i; @@ -td + struct i Signed-off-by: Arushi Singhal Signed-off-by: Pablo Neira Ayuso --- diff --git a/extensions/libebt_log.c b/extensions/libebt_log.c index 0799185d..f170af03 100644 --- a/extensions/libebt_log.c +++ b/extensions/libebt_log.c @@ -27,12 +27,12 @@ #define LOG_LOG '5' #define LOG_IP6 '6' -typedef struct _code { +struct code { char *c_name; int c_val; -} CODE; +}; -static CODE eight_priority[] = { +static struct code eight_priority[] = { { "emerg", LOG_EMERG }, { "alert", LOG_ALERT }, { "crit", LOG_CRIT },