1
0
mirror of https://github.com/eworm-de/routeros-scripts.git synced 2024-05-11 05:55:19 +00:00

accesslist-duplicates: update initialization of empty array

Having the parenthesis here is important for valid syntax!
This commit is contained in:
Christian Hesse
2022-07-13 11:30:06 +02:00
parent 5b2ea9b1a4
commit 073f432204
3 changed files with 6 additions and 6 deletions

View File

@@ -14,8 +14,8 @@
:global Read;
:local Seen [ :toarray "" ];
:local Shown [ :toarray "" ];
:local Seen ({});
:local Shown ({});
:foreach AccList in=[ /interface/wireless/access-list/find where mac-address!="00:00:00:00:00:00" ] do={
:local Mac [ /interface/wireless/access-list/get $AccList mac-address ];