aboutsummaryrefslogtreecommitdiff
path: root/src/identity/plugin_rest_identity.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/identity/plugin_rest_identity.c')
-rw-r--r--src/identity/plugin_rest_identity.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/identity/plugin_rest_identity.c b/src/identity/plugin_rest_identity.c
index 4b3571996..97a7bf513 100644
--- a/src/identity/plugin_rest_identity.c
+++ b/src/identity/plugin_rest_identity.c
@@ -309,6 +309,7 @@ do_error (void *cls)
309 handle->response_code = MHD_HTTP_OK; 309 handle->response_code = MHD_HTTP_OK;
310 response = json_dumps (json_error, 0); 310 response = json_dumps (json_error, 0);
311 resp = GNUNET_REST_create_response (response); 311 resp = GNUNET_REST_create_response (response);
312 MHD_add_response_header (resp, "Content-Type", "application/json");
312 handle->proc (handle->proc_cls, resp, handle->response_code); 313 handle->proc (handle->proc_cls, resp, handle->response_code);
313 json_decref (json_error); 314 json_decref (json_error);
314 GNUNET_free (response); 315 GNUNET_free (response);
@@ -398,7 +399,7 @@ ego_get_for_subsystem (void *cls,
398 result_str = json_dumps (json_root, 0); 399 result_str = json_dumps (json_root, 0);
399 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Result %s\n", result_str); 400 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Result %s\n", result_str);
400 resp = GNUNET_REST_create_response (result_str); 401 resp = GNUNET_REST_create_response (result_str);
401 402 MHD_add_response_header (resp, "Content-Type", "application/json");
402 json_decref (json_root); 403 json_decref (json_root);
403 handle->proc (handle->proc_cls, resp, MHD_HTTP_OK); 404 handle->proc (handle->proc_cls, resp, MHD_HTTP_OK);
404 GNUNET_free (result_str); 405 GNUNET_free (result_str);
@@ -485,7 +486,7 @@ ego_get_all (struct GNUNET_REST_RequestHandle *con_handle,
485 result_str = json_dumps (json_root, 0); 486 result_str = json_dumps (json_root, 0);
486 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Result %s\n", result_str); 487 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Result %s\n", result_str);
487 resp = GNUNET_REST_create_response (result_str); 488 resp = GNUNET_REST_create_response (result_str);
488 489 MHD_add_response_header (resp, "Content-Type", "application/json");
489 json_decref (json_root); 490 json_decref (json_root);
490 handle->proc (handle->proc_cls, resp, MHD_HTTP_OK); 491 handle->proc (handle->proc_cls, resp, MHD_HTTP_OK);
491 GNUNET_free (result_str); 492 GNUNET_free (result_str);
@@ -518,7 +519,7 @@ ego_get_response (struct RequestHandle *handle, struct EgoEntry *ego_entry)
518 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Result %s\n", result_str); 519 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Result %s\n", result_str);
519 resp = GNUNET_REST_create_response (result_str); 520 resp = GNUNET_REST_create_response (result_str);
520 handle->proc (handle->proc_cls, resp, MHD_HTTP_OK); 521 handle->proc (handle->proc_cls, resp, MHD_HTTP_OK);
521 522 MHD_add_response_header (resp, "Content-Type", "application/json");
522 json_decref (json_ego); 523 json_decref (json_ego);
523 GNUNET_free (result_str); 524 GNUNET_free (result_str);
524 GNUNET_SCHEDULER_add_now (&cleanup_handle, handle); 525 GNUNET_SCHEDULER_add_now (&cleanup_handle, handle);