aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf.c b/conf.c
index 551e8f5e..82487ddf 100644
--- a/conf.c
+++ b/conf.c
@@ -47,10 +47,10 @@ conf_t *conf_load( int argc, char *argv[] )
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;
hotfix/0.19.0.1 Unnamed repository; edit this file 'description' to name the repository.MimesBrønn
aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/rails-2.1.0/railties/lib/ruby_version_check.rb
blob: 68d3acc8764484a6c421bfb4499e89ccad18053e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17