aboutsummaryrefslogtreecommitdiffstats
path: root/unix.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-03-26 08:14:37 -0400
committerWilmer van der Gaast <wilmer@gaast.net>2010-03-26 08:14:37 -0400
commit3ddb7477f51d3cf1632e2a8b6f7da4c0609a52cb (patch)
tree4ed5b267d5968fa462c2d84de73f789216b3284e /unix.c
parentba7d16f3c90de2744243efe6373ccebe51cfcb5a (diff)
One total mess that doesn't do much yet, but reorganised some stuff and
untying the IRC and the core parts a little bit. Lots of work left to do.
Diffstat (limited to 'unix.c')
-rw-r--r--unix.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/unix.c b/unix.c
index 7088d0f8..647418fb 100644
--- a/unix.c
+++ b/unix.c
@@ -61,7 +61,7 @@ int main( int argc, char *argv[] )
return( 1 );
b_main_init();
- nogaim_init();
+ //nogaim_init();
srand( time( NULL ) ^ getpid() );
global.helpfile = g_strdup( HELP_FILE );
@@ -114,12 +114,14 @@ int main( int argc, char *argv[] )
}
}
+ /*
global.storage = storage_init( global.conf->primary_storage, global.conf->migrate_storage );
if( global.storage == NULL )
{
log_message( LOGLVL_ERROR, "Unable to load storage backend '%s'", global.conf->primary_storage );
return( 1 );
}
+ */
/* Catch some signals to tell the user what's happening before quitting */
memset( &sig, 0, sizeof( sig ) );