Skip to content

Commit

Permalink
Expanded menu mac address support from 4 to 8.
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterSuh-Q3 authored Dec 17, 2024
1 parent 501f7c7 commit d4f2d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion menu_m.sh
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ function checkUserConfig() {
# Check if the MAC address is not NULL
if [ -n "$mac_value" ]; then
# Check if this MAC address already exists in our array
if [ -n "${mac_array[$mac_value]}" ]; then
if [ -n "${mac_array[$mac_value]+x}" ]; then
duplicate_found=true
break
else
Expand Down

0 comments on commit d4f2d0a

Please sign in to comment.