X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=recv.c;h=e46fa1a3f50008faffb5c1f66038e53d54b48c44;hb=74c88020bd325865fe26ed25ea8ad0ace0924136;hp=3d5049ba36aabb42720d6b4bb2d1d3f57b0acd7f;hpb=4fa8cb43454bc7e6d958433b1524fdc2f455f2ad;p=paraslash.git diff --git a/recv.c b/recv.c index 3d5049ba..e46fa1a3 100644 --- a/recv.c +++ b/recv.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2012 Andre Noll + * Copyright (C) 2005-2013 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -22,6 +22,11 @@ #include "stdout.h" #include "version.h" +extern void afh_recv_init(struct receiver *r); +#undef AFH_RECEIVER +#define AFH_RECEIVER {.name = "afh", .init = afh_recv_init}, +DEFINE_RECEIVER_ARRAY; + /** The gengetopt args info struct. */ static struct recv_args_info conf; @@ -104,7 +109,7 @@ int main(int argc, char *argv[]) register_task(&s, &sot.task); rn.task.pre_select = r->pre_select; - rn.task.post_select = r->post_select; + rn.task.new_post_select = r->new_post_select; sprintf(rn.task.status, "%s", r->name); register_task(&s, &rn.task);