[gnome-keyring: 5/7] secret-store: Don't make generated collection identifier lower case
- From: Stefan Walter <stefw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-keyring: 5/7] secret-store: Don't make generated collection identifier lower case
- Date: Thu, 15 Dec 2011 12:40:51 +0000 (UTC)
commit 3a7435329e4f5a23bec66b0fe9e16f5f79d57c5a
Author: Stef Walter <stefw collabora co uk>
Date: Thu Dec 1 17:45:16 2011 +0100
secret-store: Don't make generated collection identifier lower case
* This is to work around problems with libgnome-keyring
and how it uses labels to identify keyrings
pkcs11/secret-store/gkm-secret-collection.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/pkcs11/secret-store/gkm-secret-collection.c b/pkcs11/secret-store/gkm-secret-collection.c
index c8906d9..cd5df63 100644
--- a/pkcs11/secret-store/gkm-secret-collection.c
+++ b/pkcs11/secret-store/gkm-secret-collection.c
@@ -306,9 +306,9 @@ factory_create_collection (GkmSession *session, GkmTransaction *transaction,
return NULL;
}
- /* No identifier? Try to use label */
+ /* No identifier? Use label */
if (identifier == NULL)
- identifier = g_utf8_strdown (label, -1);
+ identifier = g_strdup (label);
}
if (!identifier || !identifier[0]) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]