aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_server.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-08-19 07:47:56 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-08-19 07:47:56 +0000
commit1e977172cabfffd4fe774b2f13101247bb0e720c (patch)
tree31675ba3ba6c1f801882ed21c20340b508d2a064 /src/transport/plugin_transport_http_server.c
parentbf7f0f51764c29f82be5aeae84dd95de7a857cd3 (diff)
downloadgnunet-1e977172cabfffd4fe774b2f13101247bb0e720c.tar.gz
gnunet-1e977172cabfffd4fe774b2f13101247bb0e720c.zip
remove dead assignments
Diffstat (limited to 'src/transport/plugin_transport_http_server.c')
-rw-r--r--src/transport/plugin_transport_http_server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/plugin_transport_http_server.c b/src/transport/plugin_transport_http_server.c
index 56477625f..abf3fdacd 100644
--- a/src/transport/plugin_transport_http_server.c
+++ b/src/transport/plugin_transport_http_server.c
@@ -1424,7 +1424,7 @@ server_access_cb (void *cls, struct MHD_Connection *mhd_connection,
1424 response = MHD_create_response_from_data (strlen ("Thank you!"), 1424 response = MHD_create_response_from_data (strlen ("Thank you!"),
1425 "Thank you!", 1425 "Thank you!",
1426 MHD_NO, MHD_NO); 1426 MHD_NO, MHD_NO);
1427 res = MHD_queue_response (mhd_connection, MHD_HTTP_OK, response); 1427 MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
1428 MHD_destroy_response (response); 1428 MHD_destroy_response (response);
1429 return MHD_YES; 1429 return MHD_YES;
1430 } 1430 }
@@ -1472,7 +1472,7 @@ server_access_cb (void *cls, struct MHD_Connection *mhd_connection,
1472 response = MHD_create_response_from_data (strlen ("Thank you!"), 1472 response = MHD_create_response_from_data (strlen ("Thank you!"),
1473 "Thank you!", 1473 "Thank you!",
1474 MHD_NO, MHD_NO); 1474 MHD_NO, MHD_NO);
1475 res = MHD_queue_response (mhd_connection, MHD_HTTP_OK, response); 1475 MHD_queue_response (mhd_connection, MHD_HTTP_OK, response);
1476 MHD_destroy_response (response); 1476 MHD_destroy_response (response);
1477 return MHD_YES; 1477 return MHD_YES;
1478 } 1478 }