X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=client.c;h=2123421e71b099bb632b99c563aaafd5b0c70aaf;hp=10cb80505f6b5163a375c7804da4bb136c6ce8a2;hb=3781a3df94ce9bb28c98369df7a140fb4c086c23;hpb=6bdac07456cb5872f824028912d1049883a9c21f diff --git a/client.c b/client.c index 10cb8050..2123421e 100644 --- a/client.c +++ b/client.c @@ -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); /** @@ -79,7 +80,7 @@ int main(int argc, char *argv[]) s.default_timeout.tv_sec = 1; s.default_timeout.tv_usec = 0; - ret = client_open(argc, argv, &ct); + 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);