All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iptables: extensions: Add/Remove the braces where necessary
@ 2017-03-31 10:06 Arushi Singhal
  0 siblings, 0 replies; only message in thread
From: Arushi Singhal @ 2017-03-31 10:06 UTC (permalink / raw)
  To: netfilter-devel

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 --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 ");
-- 
2.11.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-03-31 10:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-31 10:06 [PATCH] iptables: extensions: Add/Remove the braces where necessary Arushi Singhal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.