about summary refs log tree commit diff stats
path: root/src/main.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-12-22 22:13:42 +0000
committerJames Booth <boothj5@gmail.com>2014-12-22 22:13:42 +0000
commit9d94ac5c6302ebf90aca9e17f5df59dfdd37c14c (patch)
tree1bde5fefd491d9fef2dc0d9e220b75ac0c15b5d4 /src/main.c
parent3cbeb7b483a7a12c6fc90f3ba15aa2f881e03cf2 (diff)
downloadprofani-tty-9d94ac5c6302ebf90aca9e17f5df59dfdd37c14c.tar.gz
Removed function pointers
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/main.c b/src/main.c
index 55745818..f3b6a17f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -53,30 +53,6 @@ static gboolean version = FALSE;
 static char *log = "INFO";
 static char *account_name = NULL;
 
-static void
-_init_modules(void)
-{
-    jabber_init_module();
-    bookmark_init_module();
-    capabilities_init_module();
-    iq_init_module();
-    message_init_module();
-    presence_init_module();
-    roster_init_module();
-    form_init_module();
-
-    ui_init_module();
-    console_init_module();
-    notifier_init_module();
-    rosterwin_init_module();
-    occupantswin_init_module();
-
-    accounts_init_module();
-#ifdef HAVE_LIBOTR
-    otr_init_module();
-#endif
-}
-
 int
 main(int argc, char **argv)
 {
@@ -149,7 +125,6 @@ main(int argc, char **argv)
         return 0;
     }
 
-    _init_modules();
     prof_run(disable_tls, log, account_name);
 
     return 0;