X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=list.c;h=c8a470055360c6b58592dd82a0d08943fc98e058;hp=a336b84aff7569223d1ec1c9546506df9aa7c5e7;hb=a5eb996e0f04d911ff61479508bbc3e17b16ff0c;hpb=a46a89fc1f8659aa71847320db8f3a66c8ff2f55 diff --git a/list.c b/list.c index a336b84..c8a4700 100644 --- a/list.c +++ b/list.c @@ -19,11 +19,12 @@ static void uci_list_set_pos(struct uci_list *head, struct uci_list *ptr, int po uci_list_del(ptr); uci_foreach_element(head, p) { - new_head = &p->list; if (pos-- <= 0) break; + new_head = &p->list; } - uci_list_add(new_head, ptr); + + uci_list_add(new_head->next, ptr); } static inline void uci_list_fixup(struct uci_list *ptr)