Files
conduit/conduit.sh
SamNet-dev f7f2ae3047 fix: load_servers() clobbering caller's local variables (#39)
load_servers() used `label`, `conn`, `auth_type` as while-read loop
variables, which clobbered identically-named locals in
add_server_interactive() due to bash dynamic scoping. This caused the
server label to be empty when adding a 2nd+ server.

Rename loop variables to `_l`, `_c`, `_a` to avoid the collision.

Closes #39
2026-02-10 01:30:13 -06:00

463 KiB