aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_server.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-04-19 12:07:05 +0000
committerChristian Grothoff <christian@grothoff.org>2012-04-19 12:07:05 +0000
commitb272a833ee57cad630ecbcce1aab366777042dd9 (patch)
tree9a6057f81afe36db736b4911a85c0b94538c1f53 /src/transport/plugin_transport_http_server.c
parent50c4e060fc721dfe2af9115639a4d47e88e04f00 (diff)
downloadgnunet-b272a833ee57cad630ecbcce1aab366777042dd9.tar.gz
gnunet-b272a833ee57cad630ecbcce1aab366777042dd9.zip
-fixing #2274 -- eliminating GNUNET_SCHEDULER_add_after
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 634f51c27..499fd06c8 100644
--- a/src/transport/plugin_transport_http_server.c
+++ b/src/transport/plugin_transport_http_server.c
@@ -988,7 +988,7 @@ server_schedule (struct Plugin *plugin, struct MHD_Daemon *daemon_handle,
988#endif 988#endif
989 ret = 989 ret =
990 GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT, 990 GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
991 GNUNET_SCHEDULER_NO_TASK, tv, wrs, wws, 991 tv, wrs, wws,
992 &server_v4_run, plugin); 992 &server_v4_run, plugin);
993 } 993 }
994 if (daemon_handle == plugin->server_v6) 994 if (daemon_handle == plugin->server_v6)
@@ -1004,7 +1004,7 @@ server_schedule (struct Plugin *plugin, struct MHD_Daemon *daemon_handle,
1004#endif 1004#endif
1005 ret = 1005 ret =
1006 GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT, 1006 GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1007 GNUNET_SCHEDULER_NO_TASK, tv, wrs, wws, 1007 tv, wrs, wws,
1008 &server_v6_run, plugin); 1008 &server_v6_run, plugin);
1009 } 1009 }
1010 GNUNET_NETWORK_fdset_destroy (wrs); 1010 GNUNET_NETWORK_fdset_destroy (wrs);