Skip to content
Snippets Groups Projects
Unverified Commit 9dae2ebb authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-mesh-vpn-fastd: respondd: adjust for new site.conf mesh VPN structure

Fixes #1130
parent fbc11086
No related branches found
No related tags found
No related merge requests found
......@@ -276,11 +276,15 @@ static struct json_object * get_mesh_vpn(void) {
if (!site)
goto end;
struct json_object *fastd_mesh_vpn;
if (!json_object_object_get_ex(site, "fastd_mesh_vpn", &fastd_mesh_vpn))
struct json_object *mesh_vpn;
if (!json_object_object_get_ex(site, "mesh_vpn", &mesh_vpn))
goto end;
ret = get_peer_group(fastd_mesh_vpn, peers);
struct json_object *mesh_vpn_fastd;
if (!json_object_object_get_ex(mesh_vpn, "fastd", &mesh_vpn_fastd))
goto end;
ret = get_peer_group(mesh_vpn_fastd, peers);
end:
json_object_put(site);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment