summaryrefslogtreecommitdiff
path: root/interface-ip.c
diff options
context:
space:
mode:
Diffstat (limited to 'interface-ip.c')
-rw-r--r--interface-ip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/interface-ip.c b/interface-ip.c
index 3b6be6b..6698bac 100644
--- a/interface-ip.c
+++ b/interface-ip.c
@@ -733,7 +733,7 @@ static void interface_update_prefix_assignments(struct device_prefix *prefix, bo
struct list_head *next = &assign_later;
struct device_prefix_assignment *n;
list_for_each_entry(n, &assign_later, head) {
- if (n->length > c->length) {
+ if (n->length < c->length) {
next = &n->head;
break;
}