X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=recv_common.c;h=fe745917a0e1743733dfb1876bcb89952ca9e322;hp=f899c301e4205070403e885325a1e98f8d0b69ca;hb=aa74a903545250506fd4c29791e6f4aef3a01c41;hpb=9f7a4958d65dd436dff90b37036ba01ce83066d5 diff --git a/recv_common.c b/recv_common.c index f899c301..fe745917 100644 --- a/recv_common.c +++ b/recv_common.c @@ -92,22 +92,22 @@ void *check_receiver_arg(char *ra, int *receiver_num) /** * Print out the help texts to all receivers. * - * \param detailed Whether the detailed help should be printed. + * \param flags Passed to \ref ggo_print_help(). */ -void print_receiver_helps(int detailed) +void print_receiver_helps(unsigned flags) { int i; - printf_or_die("\nAvailable receivers: \n\t"); + printf_or_die("\nAvailable receivers: "); FOR_EACH_RECEIVER(i) printf_or_die("%s%s", i? " " : "", receivers[i].name); - printf_or_die("\n\n"); + printf_or_die("\n"); FOR_EACH_RECEIVER(i) { struct receiver *r = receivers + i; if (!r->help.short_help) continue; - printf_or_die("Options for %s:\n", r->name); - ggo_print_help(&r->help, detailed); + printf_or_die("\nOptions for %s:", r->name); + ggo_print_help(&r->help, flags); } }