summaryrefslogtreecommitdiff
path: root/pkcs11/secret-store
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2011-12-01 17:45:16 +0100
committerStef Walter <stefw@collabora.co.uk>2011-12-01 17:50:56 +0100
commit160c386dcf563d9c7f38776c6b211001948de5e9 (patch)
treef8470244cfd2d2629579af4f2077f80656833ba9 /pkcs11/secret-store
parentf34a9c4083e7d8627d3243cb46995248be7587e8 (diff)
downloadgnome-keyring-160c386dcf563d9c7f38776c6b211001948de5e9.tar.gz
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
Diffstat (limited to 'pkcs11/secret-store')
-rw-r--r--pkcs11/secret-store/gkm-secret-collection.c4
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 c8906d94..cd5df634 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]) {