diff options
Diffstat (limited to 'src/profanity.c')
-rw-r--r-- | src/profanity.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/profanity.c b/src/profanity.c index 48f8a3f5..6ea7ff79 100644 --- a/src/profanity.c +++ b/src/profanity.c @@ -19,7 +19,6 @@ * along with Profanity. If not, see <http://www.gnu.org/licenses/>. * */ - #include "config.h" #ifdef HAVE_GIT_VERSION @@ -44,6 +43,7 @@ #include "contact.h" #include "log.h" #include "muc.h" +#include "otr.h" #include "resource.h" #include "ui/notifier.h" #include "ui/ui.h" @@ -647,6 +647,9 @@ _init(const int disable_tls, char *log_level) log_info("Initialising contact list"); roster_init(); muc_init(); +#ifdef HAVE_LIBOTR + otr_init(); +#endif atexit(_shutdown); } |