diff mbox

iptables: extensions: Add/Remove the braces where necessary

Message ID 20170331100659.GA21407@arushi-HP-Pavilion-Notebook
State Changes Requested
Delegated to: Pablo Neira
Headers show

Commit Message

Arushi Singhal March 31, 2017, 10:06 a.m. UTC
To follow the coding style of kernel the braces are removed/added and
placed properly, if not.

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
---
 extensions/libebt_802_3.c | 3 +--
 extensions/libebt_ip.c    | 5 ++---
 2 files changed, 3 insertions(+), 5 deletions(-)
diff mbox

Patch

diff --git a/extensions/libebt_802_3.c b/extensions/libebt_802_3.c
index f05d02e..801fb51 100644
--- a/extensions/libebt_802_3.c
+++ b/extensions/libebt_802_3.c
@@ -111,8 +111,7 @@  static void br802_3_print(const void *ip, const struct xt_entry_match *match,
 	}
 }
 
-static struct xtables_match br802_3_match =
-{
+static struct xtables_match br802_3_match = {
 	.name		= "802_3",
 	.revision	= 0,
 	.version	= XTABLES_VERSION,
diff --git a/extensions/libebt_ip.c b/extensions/libebt_ip.c
index 6b301e2..5943120 100644
--- a/extensions/libebt_ip.c
+++ b/extensions/libebt_ip.c
@@ -274,11 +274,10 @@  static void brip_print(const void *ip, const struct xt_entry_match *match,
 		if (info->invflags & EBT_IP_PROTO)
 			printf("! ");
 		pe = getprotobynumber(info->protocol);
-		if (pe == NULL) {
+		if (pe == NULL)
 			printf("%d ", info->protocol);
-		} else {
+		else
 			printf("%s ", pe->p_name);
-		}
 	}
 	if (info->bitmask & EBT_IP_SPORT) {
 		printf("--ip-sport ");