[gcr] Release 3.3.3.1
- From: Stefan Walter <stefw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gcr] Release 3.3.3.1
- Date: Wed, 21 Dec 2011 08:28:54 +0000 (UTC)
commit defa049f5f9cd12d9273b2dfa689ed72bc735e15
Author: Stef Walter <stefw collabora co uk>
Date: Wed Dec 21 09:04:10 2011 +0100
Release 3.3.3.1
* And some build warning fixes
NEWS | 3 +++
configure.ac | 2 +-
gck/gck-attributes.c | 4 ++--
gcr/tests/frob-certificate-request.c | 3 ++-
4 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/NEWS b/NEWS
index 97042da..c0d157e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+gcr 3.3.3.1
+ - Fix build issues
+
gcr 3.3.3
- Add support for parsing PKCS#10 and SPKAC formats in GcrParser
- Add support for viewing certificate requests in GcrViewer
diff --git a/configure.ac b/configure.ac
index c26d9fa..ece97c3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.63])
-AC_INIT([gcr], [3.3.3],
+AC_INIT([gcr], [3.3.3.1],
[http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-keyring&component=gcr],
[gcr])
diff --git a/gck/gck-attributes.c b/gck/gck-attributes.c
index 3a99f19..ea8c6f3 100644
--- a/gck/gck-attributes.c
+++ b/gck/gck-attributes.c
@@ -2932,7 +2932,7 @@ gck_attributes_add (GckAttributes *attrs,
*
* #GckAttributes are now immutable. This method no longer does anything.
*
- * Deprecated: 3.4: Use gck_builder_set() instead.
+ * Deprecated: 3.4: Use gck_builder_add_data() instead.
**/
void
gck_attributes_set (GckAttributes *attrs,
@@ -3197,7 +3197,7 @@ gck_attributes_set_all (GckAttributes *attrs,
*
* #GckAttributes are now immutable, and can be used in mulitple places.
*
- * Deprecated: 3.4: Use gtk_attributes_ref() or gck_builder_add_all() instead.
+ * Deprecated: 3.4: Use gck_attributes_ref() or gck_builder_add_all() instead.
*
* Returns: (transfer none): a new floating #GckAttributes
*/
diff --git a/gcr/tests/frob-certificate-request.c b/gcr/tests/frob-certificate-request.c
index 46771fc..c2ab7c3 100644
--- a/gcr/tests/frob-certificate-request.c
+++ b/gcr/tests/frob-certificate-request.c
@@ -96,7 +96,8 @@ test_request (const gchar *uri)
data = gcr_certificate_request_encode (req, TRUE, &n_data);
- write (1, data, n_data);
+ if (write (1, data, n_data) < 0)
+ g_error ("failed to write: %s", g_strerror (errno));
g_free (data);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]