Changes in unix.c [eeb85a8:ba5add7]
Legend:
- Unmodified
- Added
- Removed
-
unix.c
reeb85a8 rba5add7 27 27 #include "commands.h" 28 28 #include "crypting.h" 29 #include "otr.h" 29 30 #include "protocols/nogaim.h" 30 31 #include "help.h" 31 32 #include "ipc.h" 33 #include "lib/ssl_client.h" 32 34 #include <signal.h> 33 35 #include <unistd.h> … … 54 56 b_main_init(); 55 57 nogaim_init(); 58 /* Ugly Note: libotr and gnutls both use libgcrypt. libgcrypt 59 has a process-global config state whose initialization happpens 60 twice if libotr and gnutls are used together. libotr installs custom 61 memory management functions for libgcrypt while our gnutls module 62 uses the defaults. Therefore we initialize OTR after SSL. *sigh* */ 63 ssl_init(); 64 otr_init(); 56 65 57 66 srand( time( NULL ) ^ getpid() );
Note: See TracChangeset
for help on using the changeset viewer.