On Fri, Feb 19, 2016 at 08:23:15PM +0100, Holger Freyther wrote:
gsm_04_11.c: In function 'sms_route_mt_sms': gsm_04_11.c:318: error: 'struct gsm_subscriber_connection' has no member named 'bts' make[3]: *** [gsm_04_11.o] Error 1
Interesting, I don't see any reference to 'bts' anywhere in that file. My line 318 looks like:
osmo_counter_inc(conn->network->stats.sms.no_receiver);
And I changed it in d03faa4bacd4d2a8b9155faf5219a948b73f481c
- osmo_counter_inc(conn->bts->network->stats.sms.no_receiver); + osmo_counter_inc(conn->network->stats.sms.no_receiver);
which is part of the sysmocom/iu branch.
Does that help??
(BTW I also fixed a test expectation in osmo-iuh today, maybe that's worth half a chocolate cookie?)
~Neels