X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=filter.c;h=27bbe63ee190b989e9396cff9e27763859ac2d38;hp=52a1ce5bf05c85c514f56e67cc4cf5ff5da6ce30;hb=19d9318abf42debb15d833d4e56ab636893285c3;hpb=5c556c52f1196cea4536d36b683372de532943a9 diff --git a/filter.c b/filter.c index 52a1ce5b..27bbe63e 100644 --- a/filter.c +++ b/filter.c @@ -66,9 +66,9 @@ static int init_filter_chain(void) fc->inbuf = sit->buf; fc->in_loaded = &sit->loaded; - fc->input_eof = &sit->eof; - fc->eof = 0; - fc->output_eof = &sot->eof; + fc->input_error = &sit->error; + fc->error = 0; + fc->output_error = &sot->error; fc->task.private_data = fc; fc->task.pre_select = filter_pre_select; fc->task.event_handler = filter_event_handler; @@ -160,7 +160,7 @@ int main(int argc, char *argv[]) stdout_set_defaults(sot); sot->buf = fc->outbuf; sot->loaded = fc->out_loaded; - sot->input_eof = &fc->eof; + sot->input_error = &fc->error; register_task(&sit->task); register_task(&fc->task);