diff options
-rw-r--r-- | src/transport/plugin_transport_http_client.c | 2 | ||||
-rw-r--r-- | src/transport/plugin_transport_http_server.c | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/transport/plugin_transport_http_client.c b/src/transport/plugin_transport_http_client.c index d6c46f2537..1b70c74b21 100644 --- a/src/transport/plugin_transport_http_client.c +++ b/src/transport/plugin_transport_http_client.c @@ -415,7 +415,7 @@ client_log (CURL * curl, curl_infotype type, char *data, size_t size, void *cls) * a fresh connection to another peer. * * @param cls closure - * @param session which session must be used + * @param s which session must be used * @param msgbuf the message to transmit * @param msgbuf_size number of bytes in 'msgbuf' * @param priority how important is the message (most plugins will diff --git a/src/transport/plugin_transport_http_server.c b/src/transport/plugin_transport_http_server.c index eb56af811c..19df500bd0 100644 --- a/src/transport/plugin_transport_http_server.c +++ b/src/transport/plugin_transport_http_server.c @@ -852,9 +852,10 @@ server_mhd_connection_timeout (struct HTTP_Server_Plugin *plugin, struct Session /** * Parse incoming URL for tag and target * - * @url incoming url - * @target where to store the target - * @tag where to store the tag + * @param plugin plugin + * @param url incoming url + * @param target where to store the target + * @param tag where to store the tag * @return GNUNET_OK on success, GNUNET_SYSERR on error */ |