X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=filter.c;h=96880b7d31922221b9eb90e25a52a258a60d3245;hb=3cfb1d880ebf22546486316cb74cce21f007eb07;hp=50b17ad7f41293fd63068303bba5c1bef5e33605;hpb=f85e05c0b3951e7d3119983c118c82d71f2662a3;p=paraslash.git diff --git a/filter.c b/filter.c index 50b17ad7..96880b7d 100644 --- a/filter.c +++ b/filter.c @@ -44,7 +44,8 @@ static struct stdout_task *sot = &stdout_task_struct; /** Gengetopt struct that holds the command line args. */ static struct filter_args_info conf; -INIT_STDERR_LOGGING(conf.loglevel_arg); +static int loglevel; +INIT_STDERR_LOGGING(loglevel); static void open_filters(void) { @@ -162,6 +163,7 @@ int main(int argc, char *argv[]) ret = parse_config(argc, argv); if (ret < 0) goto out; + loglevel = get_loglevel_by_name(conf.loglevel_arg); ret = init_filter_chain(); if (ret < 0) goto out;