diff options
author | Martin Schanzenbach <mschanzenbach@posteo.de> | 2015-03-26 17:11:08 +0000 |
---|---|---|
committer | Martin Schanzenbach <mschanzenbach@posteo.de> | 2015-03-26 17:11:08 +0000 |
commit | 45d2452b677a6432ca076a9010ebeccd610d80c5 (patch) | |
tree | 245aaac9b1f960ad408bb71de7f79bde2b174fa5 /src/identity | |
parent | 6953069393619f01de19bcfa2041ca0072fb9532 (diff) |
-minor put vs patch
Diffstat (limited to 'src/identity')
-rw-r--r-- | src/identity/plugin_rest_identity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/identity/plugin_rest_identity.c b/src/identity/plugin_rest_identity.c index 181a21c12f..e672c70ef3 100644 --- a/src/identity/plugin_rest_identity.c +++ b/src/identity/plugin_rest_identity.c @@ -658,7 +658,7 @@ init_cont (struct RequestHandle *handle) static const struct GNUNET_REST_RestConnectionHandler handlers[] = { {MHD_HTTP_METHOD_GET, GNUNET_REST_API_NS_IDENTITY, &ego_info_response}, {MHD_HTTP_METHOD_POST, GNUNET_REST_API_NS_IDENTITY, &ego_create_cont}, - {MHD_HTTP_METHOD_PUT, GNUNET_REST_API_NS_IDENTITY, &ego_edit_cont}, + {MHD_HTTP_METHOD_PATCH, GNUNET_REST_API_NS_IDENTITY, &ego_edit_cont}, {MHD_HTTP_METHOD_DELETE, GNUNET_REST_API_NS_IDENTITY, &ego_delete_cont}, GNUNET_REST_HANDLER_END }; |