diff options
author | Christian Hesse <mail@eworm.de> | 2019-02-21 00:03:57 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2019-02-21 00:03:57 +0100 |
commit | 04025da9b82260544c60019394fb88428fb215ce (patch) | |
tree | e9bfca106120d186e79db8281c7250baa3436056 /accesslist-duplicates.template | |
parent | 5f7c7274573ae290205aa984e8029c586db0e16e (diff) |
global-functions: drop $Read, use :return directly
Diffstat (limited to 'accesslist-duplicates.template')
-rw-r--r-- | accesslist-duplicates.template | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/accesslist-duplicates.template b/accesslist-duplicates.template index 18225a6..9bb3ce1 100644 --- a/accesslist-duplicates.template +++ b/accesslist-duplicates.template @@ -7,8 +7,6 @@ # !! This is just a template! Replace '%PATH%' with 'caps-man' # !! or 'interface wireless'! -:global Read; - :local Seen [ :toarray "" ]; :local Shown [ :toarray "" ]; @@ -25,7 +23,7 @@ :set Shown ($Shown, $Mac); :put "\nEnter to skip, numeric id to remove!"; - :local Remove [ $Read ]; + :local Remove [ :return ]; :if ($Remove != "") do={ :put ("Removing numeric id " . $Remove . "...\n"); / %PATH% access-list remove $Remove; |