From c7e998ac1fd08c9cffbf0d48333d5e5d23b60c20 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Sat, 3 Apr 2004 16:20:13 +0000 Subject: [PATCH] Temporary fix while API gets stable design --- src/configure.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/configure.c b/src/configure.c index cc44244..9440bc1 100644 --- a/src/configure.c +++ b/src/configure.c @@ -20,7 +20,8 @@ int main(int argc, char * argv[]) if(argc != 1) return usage(); - if((config = config_new("project.conf")) == NULL) +/* if((config = config_new("project.conf")) == NULL) */ + if((config = config_new()) == NULL) return 2; config_delete(config); return 0;