introspection: Fix warnings
authorJasper St. Pierre <jstpierre@mecheye.net>
Thu, 24 May 2012 13:53:22 +0000 (09:53 -0400)
committerJasper St. Pierre <jstpierre@mecheye.net>
Thu, 24 May 2012 21:48:22 +0000 (17:48 -0400)
https://bugzilla.gnome.org/show_bug.cgi?id=676742

libsoup/soup-auth.h
libsoup/soup-cookie-jar.c
libsoup/soup-message.c
libsoup/soup-server.c

index 0a26e8c..18f11c7 100644 (file)
@@ -32,7 +32,7 @@ typedef struct {
 
        gboolean     (*update)               (SoupAuth      *auth,
                                              SoupMessage   *msg,
-                                             GHashTable    *auth_params);
+                                             GHashTable    *auth_header);
 
        GSList *     (*get_protection_space) (SoupAuth      *auth,
                                              SoupURI       *source_uri);
index 6dd9d85..6d95cf0 100644 (file)
@@ -128,7 +128,7 @@ soup_cookie_jar_class_init (SoupCookieJarClass *jar_class)
        jar_class->is_persistent = is_persistent;
 
        /**
-        * SoupCookieJar::changed
+        * SoupCookieJar::changed:
         * @jar: the #SoupCookieJar
         * @old_cookie: the old #SoupCookie value
         * @new_cookie: the new #SoupCookie value
index c70a954..a12a44e 100644 (file)
@@ -500,7 +500,7 @@ soup_message_class_init (SoupMessageClass *message_class)
         * @msg: the message
         * @event: the network event
         * @connection: the current state of the network connection
-
+        *
         * Emitted to indicate that some network-related event
         * related to @msg has occurred. This essentially proxies the
         * #GSocketClient::event signal, but only for events that
@@ -728,7 +728,7 @@ soup_message_class_init (SoupMessageClass *message_class)
         * Since: 2.34
         **/
        /**
-        * SoupMessage:tls-certificate:
+        * SoupMessage:tls-errors:
         *
         * The verification errors on #SoupMessage:tls-certificate
         *
@@ -1113,7 +1113,7 @@ soup_message_got_body (SoupMessage *msg)
 /**
  * soup_message_content_sniffed:
  * @msg: a #SoupMessage
- * @type: a string with the sniffed content type
+ * @content_type: a string with the sniffed content type
  * @params: a #GHashTable with the parameters
  *
  * Emits the %content_sniffed signal, indicating that the IO layer
index f4b7f41..26bfcdf 100644 (file)
@@ -236,7 +236,7 @@ soup_server_class_init (SoupServerClass *server_class)
        /* signals */
 
        /**
-        * SoupServer::request-started
+        * SoupServer::request-started:
         * @server: the server
         * @message: the new message
         * @client: the client context
@@ -265,7 +265,7 @@ soup_server_class_init (SoupServerClass *server_class)
                              SOUP_TYPE_CLIENT_CONTEXT);
 
        /**
-        * SoupServer::request-read
+        * SoupServer::request-read:
         * @server: the server
         * @message: the message
         * @client: the client context
@@ -290,7 +290,7 @@ soup_server_class_init (SoupServerClass *server_class)
                              SOUP_TYPE_CLIENT_CONTEXT);
 
        /**
-        * SoupServer::request-finished
+        * SoupServer::request-finished:
         * @server: the server
         * @message: the message
         * @client: the client context
@@ -310,7 +310,7 @@ soup_server_class_init (SoupServerClass *server_class)
                              SOUP_TYPE_CLIENT_CONTEXT);
 
        /**
-        * SoupServer::request-aborted
+        * SoupServer::request-aborted:
         * @server: the server
         * @message: the message
         * @client: the client context