From ed66c5623d47993b1d2a8737bf83f548c40d4b3d Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 25 Jun 2025 09:42:21 +0200 Subject: [PATCH] lib: Fix whitespace Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- lib/util/util_net.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/util/util_net.c b/lib/util/util_net.c index 5c19cc90003..ffc7e4021fd 100644 --- a/lib/util/util_net.c +++ b/lib/util/util_net.c @@ -1,4 +1,4 @@ -/* +/* Unix SMB/CIFS implementation. Samba utility functions Copyright (C) Jelmer Vernooij 2008 @@ -440,7 +440,7 @@ _PUBLIC_ bool same_net_v4(struct in_addr ip1, struct in_addr ip2, struct in_addr nmask = ntohl(mask.s_addr); net1 = ntohl(ip1.s_addr); net2 = ntohl(ip2.s_addr); - + return((net1 & nmask) == (net2 & nmask)); } -- 2.47.3