Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dequis/purple-facebook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2017-07-10 06:15:30 +0300
committerGary Kramlich <grim@reaperworld.com>2017-07-10 06:15:30 +0300
commit04653c2551959b10d8196082aaa5c9e5fcaf347a (patch)
treea4e6aaae39f8bdd84e852598acc6a825b1b83a3e
parent63b86e790b745041af96ec19bac9c32a32fd31f3 (diff)
parent133a933a3d90b1f07a7572b96145c2453178201d (diff)
Merged in CMaiku/pidgin (pull request #238)
Fix building without pidgin installed Approved-by: Elliott Sales de Andrade <quantum.analyst@gmail.com> Approved-by: Gary Kramlich <grim@reaperworld.com>
-rw-r--r--pidgin/libpurple/http.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/pidgin/libpurple/http.h b/pidgin/libpurple/http.h
index 2e0ae52..870d766 100644
--- a/pidgin/libpurple/http.h
+++ b/pidgin/libpurple/http.h
@@ -174,6 +174,7 @@ PurpleHttpConnection * purple_http_get(PurpleConnection *gc,
* @callback: (scope call): The callback function.
* @user_data: The user data to pass to the callback function.
* @format: The format string.
+ * @...: The parameters to insert into the format string.
*
* Constructs an URL and fetches the data from it with GET request, then passes
* it to a callback function.
@@ -529,6 +530,7 @@ void purple_http_request_set_url(PurpleHttpRequest *request, const gchar *url);
* purple_http_request_set_url_printf:
* @request: The request.
* @format: The format string.
+ * @...: The parameters to insert into the format string.
*
* Constructs and sets an URL for HTTP request.
*/
@@ -756,6 +758,7 @@ void purple_http_request_header_set_printf(PurpleHttpRequest *request,
/**
* purple_http_request_header_add:
+ * @request: The request.
* @key: A header to be set.
* @value: A value to set.
*