Repository : ssh://git@open-mesh.org/alfred
On branch : master
commit f21f747182c3fc970965e903e9ff01791a5e7da8 Author: Sven Eckelmann sven.eckelmann@open-mesh.com Date: Thu Oct 13 11:03:10 2016 +0200
alfred: Keep order of interfaces from commandline
The first (valid) interface mac address will be used as source mac for an dataset. But alfred added the commandline parameters for a multi-interface master in reverse order.
Keep the list in the same order as the commandline to fulfill the user expectations when checking the source entries of datasets.
Signed-off-by: Sven Eckelmann sven.eckelmann@open-mesh.com Signed-off-by: Simon Wunderlich sw@simonwunderlich.de
f21f747182c3fc970965e903e9ff01791a5e7da8 netsock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/netsock.c b/netsock.c index d72541e..5d37347 100644 --- a/netsock.c +++ b/netsock.c @@ -165,7 +165,7 @@ int netsock_set_interfaces(struct globals *globals, char *interfaces) return -ENOMEM; }
- list_add(&interface->list, &globals->interfaces); + list_add_tail(&interface->list, &globals->interfaces); }
return 0;