X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=client.c;h=2123421e71b099bb632b99c563aaafd5b0c70aaf;hp=c97ceb039a4a509a15936b0e02c78f7f910ac66a;hb=4d3f9f6c22281f9abb5d59d378a10303420641b7;hpb=cd8aecdb81f2ffb1a6e34a866d6156f8c915a467 diff --git a/client.c b/client.c index c97ceb03..2123421e 100644 --- a/client.c +++ b/client.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2008 Andre Noll + * Copyright (C) 1997-2009 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -54,7 +54,8 @@ static struct task svt = { .status = "supervisor task" }; -INIT_STDERR_LOGGING(ct->conf.loglevel_arg); +static int client_loglevel; /* loglevel */ +INIT_STDERR_LOGGING(client_loglevel); /** @@ -75,12 +76,12 @@ int main(int argc, char *argv[]) { int ret; - struct sched s; + static struct sched s; s.default_timeout.tv_sec = 1; s.default_timeout.tv_usec = 0; - ret = client_open(argc, argv, &ct); - if (ret < 0) /* can not use PARA_LOG here */ + ret = client_open(argc, argv, &ct, &client_loglevel); + if (ret < 0) /* can not use PARA_LOG here because ct is NULL */ exit(EXIT_FAILURE); register_task(&svt); ret = schedule(&s);