seahorse r2965 - in trunk: . pgp



Author: sadam
Date: Tue Mar 31 15:05:56 2009
New Revision: 2965
URL: http://svn.gnome.org/viewvc/seahorse?rev=2965&view=rev

Log:
2009-03-31  Adam Schreiber  <sadam clemson edu>

    * pgp/seahorse-hkp-source.c: Make UIDs show up in the order reported by the 
    keyserver. 



Modified:
   trunk/ChangeLog
   trunk/pgp/seahorse-hkp-source.c

Modified: trunk/pgp/seahorse-hkp-source.c
==============================================================================
--- trunk/pgp/seahorse-hkp-source.c	(original)
+++ trunk/pgp/seahorse-hkp-source.c	Tue Mar 31 15:05:56 2009
@@ -522,9 +522,9 @@
 	g_strfreev (lines);
 
 	if (key) {
-		seahorse_pgp_key_set_uids (SEAHORSE_PGP_KEY (key), uids);
+		seahorse_pgp_key_set_uids (SEAHORSE_PGP_KEY (key), g_list_reverse (uids));
 		seahorse_object_list_free (uids);
-		seahorse_pgp_key_set_subkeys (SEAHORSE_PGP_KEY (key), subkeys);
+		seahorse_pgp_key_set_subkeys (SEAHORSE_PGP_KEY (key), g_list_reverse (subkeys));
 		seahorse_object_list_free (subkeys);
 	}
 	



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