From 27d52b5ee5a26e926489b6d5e6073730d897cf60 Mon Sep 17 00:00:00 2001
From: Jan-Niklas Burfeind <git@aiyionpri.me>
Date: Tue, 3 Jan 2023 16:01:34 +0100
Subject: [PATCH] gluon-mesh-vpn-fastd: fix c indentation

---
 package/gluon-mesh-vpn-fastd/src/respondd.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/gluon-mesh-vpn-fastd/src/respondd.c b/package/gluon-mesh-vpn-fastd/src/respondd.c
index f48ae0c7..a7237216 100644
--- a/package/gluon-mesh-vpn-fastd/src/respondd.c
+++ b/package/gluon-mesh-vpn-fastd/src/respondd.c
@@ -219,7 +219,7 @@ static bool get_peer_connection(struct json_object **ret, struct json_object *co
 
 	struct json_object *peer, *connection, *established;
 	if (!json_object_object_get_ex(peers, key, &peer) ||
-	    !json_object_object_get_ex(peer, "connection", &connection))
+			!json_object_object_get_ex(peer, "connection", &connection))
 		return false;
 
 	if (json_object_object_get_ex(connection, "established", &established)) {
@@ -242,7 +242,7 @@ static struct json_object * get_peer_group(struct json_object *config, struct js
 
 	struct json_object *config_peers;
 	if (json_object_object_get_ex(config, "peers", &config_peers) &&
-	    json_object_is_type(config_peers, json_type_object)) {
+			json_object_is_type(config_peers, json_type_object)) {
 		struct json_object *ret_peers = json_object_new_object();
 
 		json_object_object_foreach(config_peers, peername, peerconfig) {
@@ -320,7 +320,7 @@ static struct json_object * get_mesh_vpn(void) {
 
 	ret = get_peer_group(mesh_vpn_fastd, peers);
 
- end:
+end:
 	json_object_put(site);
 	json_object_put(status);
 
-- 
GitLab