gnome-keyring r1534 - in trunk: . pkcs11/user-store



Author: nnielsen
Date: Sun Feb  8 04:57:11 2009
New Revision: 1534
URL: http://svn.gnome.org/viewvc/gnome-keyring?rev=1534&view=rev

Log:
Don't add a dash to the front of the identifiers of stored objects.

Modified:
   trunk/ChangeLog
   trunk/pkcs11/user-store/gck-user-storage.c

Modified: trunk/pkcs11/user-store/gck-user-storage.c
==============================================================================
--- trunk/pkcs11/user-store/gck-user-storage.c	(original)
+++ trunk/pkcs11/user-store/gck-user-storage.c	Sun Feb  8 04:57:11 2009
@@ -182,7 +182,7 @@
 	}
 	
 	/* Build up the identifier */
-	identifier = g_strconcat (name ? "-" : "", name, ext, NULL);
+	identifier = g_strconcat (name, ext, NULL);
 	g_strdelimit (identifier, UNWANTED_IDENTIFIER_CHARS, '_');
 
 	g_free (name);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]