> fatal("fcntl");
>
> + prepare_listeners(&conf);
> +
> /* fork children */
[...]
>
> + prepare_listeners(conf);
bgpd.c says that conf is a bgpd_config struct, prepare_listeners() needs
a pointer pointing to a bgpd_config struct.
There's a missing '&' sign in the 2nd preprare_listeners() call.
tamas