Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Jul 2023 17:56:09 GMT
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: a29916a6f8f5 - main - ifconfig_netlink.c: whitespace cleanup.
Message-ID:  <202307201756.36KHu9Cf054323@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by np:

URL: https://cgit.FreeBSD.org/src/commit/?id=a29916a6f8f54e264279c990884b545b4048bb47

commit a29916a6f8f54e264279c990884b545b4048bb47
Author:     Navdeep Parhar <np@FreeBSD.org>
AuthorDate: 2023-07-20 17:47:34 +0000
Commit:     Navdeep Parhar <np@FreeBSD.org>
CommitDate: 2023-07-20 17:54:56 +0000

    ifconfig_netlink.c: whitespace cleanup.
    
    No functional change.
---
 sbin/ifconfig/ifconfig_netlink.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sbin/ifconfig/ifconfig_netlink.c b/sbin/ifconfig/ifconfig_netlink.c
index d2e3863079e7..76dd99307f31 100644
--- a/sbin/ifconfig/ifconfig_netlink.c
+++ b/sbin/ifconfig/ifconfig_netlink.c
@@ -102,7 +102,7 @@ print_bits(const char *btype, uint32_t *v, const int v_count,
 	}
 	if (num > 0)
 		printf(">");
-}	
+}
 
 static void
 nl_init_socket(struct snl_state *ss)
@@ -287,7 +287,7 @@ match_iface(struct ifconfig_args *args, struct iface *iface)
 		};
 		return (match_ether(&sdl));
 	}
-	
+
 	for (struct ifa *ifa = iface->ifa; ifa != NULL; ifa = ifa->next) {
 		if (args->afp->af_af == ifa->addr.ifa_family)
 			return (true);
@@ -421,7 +421,7 @@ static int
 get_local_socket(void)
 {
 	int s = socket(AF_LOCAL, SOCK_DGRAM, 0);
-	
+
 	if (s < 0)
 		err(1, "socket(family %u,SOCK_DGRAM)", AF_LOCAL);
 	return (s);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202307201756.36KHu9Cf054323>