X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=compress_filter.c;fp=compress_filter.c;h=9f9d8515e3794139a65f9f3e7598d3d900829bcc;hp=ff4ce6fb7663c5a0c35e1a42b433060b3b162b89;hb=e3a7e12639c34fd86d48a072beb48add8c498d09;hpb=742c8b3f79a59278ced71e1855da1846b157b494 diff --git a/compress_filter.c b/compress_filter.c index ff4ce6fb..9f9d8515 100644 --- a/compress_filter.c +++ b/compress_filter.c @@ -37,7 +37,7 @@ static void compress_close(struct filter_node *fn) free(fn->private_data); } -static int compress_post_select(__a_unused struct sched *s, void *context) +static int compress_post_monitor(__a_unused struct sched *s, void *context) { struct filter_node *fn = context; struct private_compress_data *pcd = fn->private_data; @@ -162,6 +162,6 @@ const struct filter lsg_filter_cmd_com_compress_user_data = { .setup = compress_setup, .open = compress_open, .close = compress_close, - .pre_select = generic_filter_pre_select, - .post_select = compress_post_select, + .pre_monitor = generic_filter_pre_monitor, + .post_monitor = compress_post_monitor, };