X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=client.c;h=88ea5af2ca737f2cead9c96fc8c0ec28b523c1da;hp=95dacd75f8a9d39c0e85f8118481b1600ecc88f8;hb=6550ebb606e55e3a53dfc6c04a7eff638a45eb8b;hpb=4c6dd71312400fc04b3f0582b23a0cff831ee8fa diff --git a/client.c b/client.c index 95dacd75..88ea5af2 100644 --- a/client.c +++ b/client.c @@ -42,7 +42,7 @@ void para_log(int ll, const char* fmt,...) va_list argp; /* ignore log message if loglevel is not high enough */ - if (!pcd || ll < pcd->conf.loglevel_arg) + if (pcd && ll < pcd->conf.loglevel_arg) return; va_start(argp, fmt); vfprintf(stderr, fmt, argp);