aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-06-27 21:02:44 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-10-12 08:30:29 +0200
commitcc98d188eb9eb90d1328c538668aa913fab7dbd2 (patch)
tree57b805225ab422ebacf134bb10e0b4969a0ce3b8 /openbsc/src
parentdf82b7237521c4177e703db38795ad8bcde233ed (diff)
bsc: Add new SCCP connections to the tail
Diffstat (limited to 'openbsc/src')
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_sccp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_sccp.c b/openbsc/src/osmo-bsc/osmo_bsc_sccp.c
index 4f03b52ff..4f3b1cb9e 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_sccp.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_sccp.c
@@ -225,7 +225,7 @@ int bsc_create_new_connection(struct gsm_subscriber_connection *conn)
bsc_con->sccp = sccp;
bsc_con->msc_con = net->msc_data->msc_con;
bsc_con->conn = conn;
- llist_add(&bsc_con->entry, &active_connections);
+ llist_add_tail(&bsc_con->entry, &active_connections);
conn->sccp_con = bsc_con;
return 0;
}