summaryrefslogtreecommitdiffhomepage
path: root/proto.c
diff options
context:
space:
mode:
Diffstat (limited to 'proto.c')
-rw-r--r--proto.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/proto.c b/proto.c
index d80cae0..f7d27aa 100644
--- a/proto.c
+++ b/proto.c
@@ -172,6 +172,7 @@ parse_static_address_option(struct interface *iface, struct blob_attr *attr,
interface_add_error(iface, "proto", "INVALID_ADDRESS", &str, 1);
return -1;
}
+ addr->index = n_addr;
n_addr++;
vlist_add(&iface->proto_ip.addr, &addr->node, &addr->flags);
}
@@ -272,6 +273,7 @@ parse_address_list(struct interface *iface, struct blob_attr *attr, bool v6,
if (!addr)
return -1;
+ addr->index = n_addr;
n_addr++;
vlist_add(&iface->proto_ip.addr, &addr->node, &addr->flags);
}