aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2015-03-26 17:11:08 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2015-03-26 17:11:08 +0000
commit45d2452b677a6432ca076a9010ebeccd610d80c5 (patch)
tree245aaac9b1f960ad408bb71de7f79bde2b174fa5 /src
parent6953069393619f01de19bcfa2041ca0072fb9532 (diff)
downloadgnunet-45d2452b677a6432ca076a9010ebeccd610d80c5.tar.gz
gnunet-45d2452b677a6432ca076a9010ebeccd610d80c5.zip
-minor put vs patch
Diffstat (limited to 'src')
-rw-r--r--src/identity/plugin_rest_identity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/identity/plugin_rest_identity.c b/src/identity/plugin_rest_identity.c
index 181a21c12..e672c70ef 100644
--- a/src/identity/plugin_rest_identity.c
+++ b/src/identity/plugin_rest_identity.c
@@ -658,7 +658,7 @@ init_cont (struct RequestHandle *handle)
658 static const struct GNUNET_REST_RestConnectionHandler handlers[] = { 658 static const struct GNUNET_REST_RestConnectionHandler handlers[] = {
659 {MHD_HTTP_METHOD_GET, GNUNET_REST_API_NS_IDENTITY, &ego_info_response}, 659 {MHD_HTTP_METHOD_GET, GNUNET_REST_API_NS_IDENTITY, &ego_info_response},
660 {MHD_HTTP_METHOD_POST, GNUNET_REST_API_NS_IDENTITY, &ego_create_cont}, 660 {MHD_HTTP_METHOD_POST, GNUNET_REST_API_NS_IDENTITY, &ego_create_cont},
661 {MHD_HTTP_METHOD_PUT, GNUNET_REST_API_NS_IDENTITY, &ego_edit_cont}, 661 {MHD_HTTP_METHOD_PATCH, GNUNET_REST_API_NS_IDENTITY, &ego_edit_cont},
662 {MHD_HTTP_METHOD_DELETE, GNUNET_REST_API_NS_IDENTITY, &ego_delete_cont}, 662 {MHD_HTTP_METHOD_DELETE, GNUNET_REST_API_NS_IDENTITY, &ego_delete_cont},
663 GNUNET_REST_HANDLER_END 663 GNUNET_REST_HANDLER_END
664 }; 664 };