On Thu, Jun 20, 2013 at 09:55:49PM +0200, Toke Høiland-Jørgensen wrote: > --- packages/net/babel/files/babeld.init 2013-05-10 17:55:46.099194445 > +0200 > +++ cero/net/babeld/files/babeld.init 2013-05-29 15:19:18.935681047 +0200 > @@ -40,7 +40,9 @@ > local _loctmp > config_get _loctmp "$section" "$option" > [ -z "$_loctmp" ] && return 0 > - append args "$switch $_loctmp" > + for i in $_loctmp; do > + append args "$switch $i" > + done > }
This is a nice quick hack. However, I believe the idiomatic way in OpenWrt would be to make import_table a list (like interfaces) instead of an option. Thanks for bringing that point to my attention. Best, -- Gabriel _______________________________________________ Babel-users mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/babel-users

