Skip to content
Snippets Groups Projects
Commit 86e89a86 authored by Christof Schulze's avatar Christof Schulze Committed by Matthias Schiffer
Browse files

gluon-mesh-vpn-fastd: make respondd module compile again (#1228)

by moving the declaration of ret to the top of get_fastd()
parent 4899dda4
No related branches found
No related tags found
No related merge requests found
......@@ -75,6 +75,7 @@ static struct json_object * get_fastd_version(void) {
static struct json_object * get_fastd(void) {
bool enabled = false;
struct json_object *ret = json_object_new_object();
struct uci_context *ctx = uci_alloc_context();
if (!ctx)
......@@ -93,11 +94,10 @@ static struct json_object * get_fastd(void) {
if (!enabled_str || !strcmp(enabled_str, "1"))
enabled = true;
disabled:
disabled:
uci_free_context(ctx);
disabled_nofree:
struct json_object *ret = json_object_new_object();
disabled_nofree:
json_object_object_add(ret, "version", get_fastd_version());
json_object_object_add(ret, "enabled", json_object_new_boolean(enabled));
return ret;
......
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