Hey,
I compiled with -Wall -Werror and fixed the easy ones. While doing it I encountered one bug in the bsc_hack.c..
int ipaccess_setup(struct gsm_network *gsmnet) is called with a struct gsm_bts*... The current ipaccess_setup need to be called once per network (as we should only bind to the address once...).
any idea what to do?
z.
On Mon, Aug 10, 2009 at 08:24:03AM +0200, Holger Freyther wrote:
I compiled with -Wall -Werror and fixed the easy ones. While doing it I encountered one bug in the bsc_hack.c..
great, thanks a lot!
int ipaccess_setup(struct gsm_network *gsmnet) is called with a struct gsm_bts*... The current ipaccess_setup need to be called once per network (as we should only bind to the address once...).
yes, that is a side-effect of me merging the recent stuff into master, sorry for that.
any idea what to do?
just call the function once during startup, even unconditionally is fine with me.