=== modified file 'conf.c'
--- conf.c	2007-10-18 16:44:25 +0000
+++ conf.c	2007-11-17 20:05:53 +0000
@@ -47,10 +47,10 @@
 	conf = g_new0( conf_t, 1 );
 	
 	conf->iface = NULL;
-	conf->port = "6667";
+	conf->port = g_strdup( "6667" );
 	conf->nofork = 0;
 	conf->verbose = 0;
-	conf->primary_storage = "xml";
+	conf->primary_storage = g_strdup( "xml" );
 	conf->migrate_storage = g_strsplit( "text", ",", -1 );
 	conf->runmode = RUNMODE_INETD;
 	conf->authmode = AUTHMODE_OPEN;


