# HG changeset patch # User Sadrul Habib Chowdhury # Date 1177783766 0 # Node ID 976a9b4c336aef7694e599b98b32210690a0c2a7 # Parent 66f0cda796e10c996206f9533f23aed40369f27d Part of the patch in ticket #383: For this to work, ciphers need to be init-ed before accounts. I don't think that will break anything, since ciphers don't depend on anything else, but the account-icons do depend on ciphers. committer: Richard Laager diff -r 66f0cda796e1 -r 976a9b4c336a libpurple/core.c --- a/libpurple/core.c Sat Apr 28 18:08:31 2007 +0000 +++ b/libpurple/core.c Sat Apr 28 18:09:26 2007 +0000 @@ -116,6 +116,8 @@ purple_dbus_init(); #endif + purple_ciphers_init(); + /* Initialize all static protocols. */ static_proto_init(); @@ -134,7 +136,6 @@ purple_accounts_init(); purple_savedstatuses_init(); - purple_ciphers_init(); purple_notify_init(); purple_connections_init(); purple_conversations_init();