Changes in unix.c [59e66ff:0e788f5]
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified unix.c
r59e66ff r0e788f5 32 32 #include "help.h" 33 33 #include "ipc.h" 34 #include "lib/ssl_client.h" 34 35 #include "md5.h" 35 36 #include "misc.h" … … 81 82 #endif 82 83 84 /* Ugly Note: libotr and gnutls both use libgcrypt. libgcrypt 85 has a process-global config state whose initialization happpens 86 twice if libotr and gnutls are used together. libotr installs custom 87 memory management functions for libgcrypt while our gnutls module 88 uses the defaults. Therefore we initialize OTR after SSL. *sigh* */ 89 ssl_init(); 83 90 #ifdef OTR_BI 84 91 otr_init(); 85 92 #endif 93 /* And in case OTR is loaded as a plugin, it'll also get loaded after 94 this point. */ 86 95 87 96 srand( time( NULL ) ^ getpid() );
Note: See TracChangeset
for help on using the changeset viewer.