X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=client.c;h=fdd07b247e617c86d3f38ff059d8bb8672356a9c;hp=4208579b5e756bbbee9ec03cd10613e13c9a596e;hb=002731cd3938f3be6b71651e56c062af1adcdec0;hpb=08e8e00a1cd0d48bd9a4189661cd6336e063e887 diff --git a/client.c b/client.c index 4208579b..fdd07b24 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); /** @@ -82,6 +83,7 @@ int main(int argc, char *argv[]) ret = client_open(argc, argv, &ct); if (ret < 0) /* can not use PARA_LOG here because ct is NULL */ exit(EXIT_FAILURE); + client_loglevel = get_loglevel_by_name(ct->conf.loglevel_arg); register_task(&svt); ret = schedule(&s); if (ret < 0)