X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=write_common.c;h=44ccf88a16aed816cb6054e09419b232d5690895;hp=a1aac65e3ddab78e0516c515dd1a6e75c9793b79;hb=b01605d7062e4d1f005d5aaaaed158d8efe06d79;hpb=9c00a79ed817c854ed10ee6bd1b908df8dc13a2f diff --git a/write_common.c b/write_common.c index a1aac65e..44ccf88a 100644 --- a/write_common.c +++ b/write_common.c @@ -114,13 +114,7 @@ void register_writer_node(struct writer_node *wn, struct btr_node *parent, strcpy(wn->task.status, name); free(name); wn->task.pre_select = w->pre_select; - if (w->new_post_select) { - wn->task.new_post_select = w->new_post_select; - wn->task.post_select = NULL; - } else { - wn->task.new_post_select = NULL; - wn->task.post_select = w->post_select; - } + wn->task.post_select = w->post_select; register_task(s, &wn->task); }