X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=filter.c;h=af62ba6a846663ecc8a08565c7c2f2b6f615ea89;hp=27bbe63ee190b989e9396cff9e27763859ac2d38;hb=11688f127edbe447586de3868c268da15492a8d3;hpb=19d9318abf42debb15d833d4e56ab636893285c3 diff --git a/filter.c b/filter.c index 27bbe63e..af62ba6a 100644 --- a/filter.c +++ b/filter.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2007 Andre Noll + * Copyright (C) 2005-2008 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -41,7 +41,7 @@ INIT_STDERR_LOGGING(conf.loglevel_arg); static void filter_event_handler(struct task *t) { - PARA_NOTICE_LOG("%s\n", PARA_STRERROR(-t->ret)); + PARA_NOTICE_LOG("%s\n", para_strerror(-t->ret)); unregister_task(t); } @@ -172,6 +172,6 @@ out: free(sit->buf); close_filters(fc); if (ret < 0) - PARA_EMERG_LOG("%s\n", PARA_STRERROR(-ret)); + PARA_EMERG_LOG("%s\n", para_strerror(-ret)); return ret < 0? EXIT_FAILURE : EXIT_SUCCESS; }