diff mbox series

[xtables-addons,2/3] xt_geoip: white-space fixes.

Message ID 20191130170219.368867-4-jeremy@azazel.net
State Changes Requested
Delegated to: Pablo Neira
Headers show
Series [xtables-addons,1/3] configure: Fix max. supported kernel version. | expand

Commit Message

Jeremy Sowden Nov. 30, 2019, 5:02 p.m. UTC
Fix the indentation of some xt_geoip module function parameters.

Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
---
 extensions/xt_geoip.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/extensions/xt_geoip.c b/extensions/xt_geoip.c
index 27e60a4643b7..d64d951f19a9 100644
--- a/extensions/xt_geoip.c
+++ b/extensions/xt_geoip.c
@@ -140,7 +140,7 @@  static void geoip_try_remove_node(struct geoip_country_kernel *p)
 }
 
 static struct geoip_country_kernel *find_node(unsigned short cc,
-    enum geoip_proto proto)
+					      enum geoip_proto proto)
 {
 	struct geoip_country_kernel *p;
 	spin_lock(&geoip_lock);
@@ -172,7 +172,7 @@  ipv6_cmp(const struct in6_addr *p, const struct in6_addr *q)
 }
 
 static bool geoip_bsearch6(const struct geoip_subnet6 *range,
-    const struct in6_addr *addr, int lo, int hi)
+			   const struct in6_addr *addr, int lo, int hi)
 {
 	int mid;
 
@@ -227,7 +227,7 @@  xt_geoip_mt6(const struct sk_buff *skb, struct xt_action_param *par)
 }
 
 static bool geoip_bsearch4(const struct geoip_subnet4 *range,
-    uint32_t addr, int lo, int hi)
+			   uint32_t addr, int lo, int hi)
 {
 	int mid;