From cd4afce470bc448972359403c0d6a13fced5a0f4 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 8 Jun 2010 11:00:09 +0800 Subject: nat: Add both entries to the tail to keep the order they are inserted --- openbsc/src/nat/bsc_nat_utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'openbsc') diff --git a/openbsc/src/nat/bsc_nat_utils.c b/openbsc/src/nat/bsc_nat_utils.c index 335b0e374..6cbf4a511 100644 --- a/openbsc/src/nat/bsc_nat_utils.c +++ b/openbsc/src/nat/bsc_nat_utils.c @@ -468,7 +468,7 @@ struct bsc_nat_acc_lst *bsc_nat_acc_lst_get(struct bsc_nat *nat, const char *nam INIT_LLIST_HEAD(&lst->fltr_list); lst->name = talloc_strdup(lst, name); - llist_add(&lst->list, &nat->access_lists); + llist_add_tail(&lst->list, &nat->access_lists); return lst; } @@ -486,6 +486,6 @@ struct bsc_nat_acc_lst_entry *bsc_nat_acc_lst_entry_create(struct bsc_nat_acc_ls if (!entry) return NULL; - llist_add(&entry->list, &lst->fltr_list); + llist_add_tail(&entry->list, &lst->fltr_list); return entry; } -- cgit v1.2.3