From: Volker Lendecke Date: Wed, 25 Jun 2025 07:42:21 +0000 (+0200) Subject: lib: Fix whitespace X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ed66c5623d47993b1d2a8737bf83f548c40d4b3d;p=thirdparty%2Fsamba.git lib: Fix whitespace Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- 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)); }