Home | History | Annotate | Download | only in dhcpcd

Lines Matching refs:next

81 	if (!ifaces || !ifaces->next)
84 ifaces = ifaces->next;
85 sorted->next = NULL;
86 for (ifp = ifaces; ifp && (ifn = ifp->next, 1); ifp = ifn) {
89 ifp->next = sorted;
94 for (ift = sorted; ift->next; ift = ift->next) {
95 if (ifcmp(ifp, ift->next) == -1) {
96 ifp->next = ift->next;
97 ift->next = ifp;
102 if (!ift->next) {
103 ift->next = ifp;
104 ifp->next = NULL;