Diff between c85791d31230c61fdc7f819cf5b9b14bc9bdbc5e and c78791b8fe5d806bd20e3caf832a924e512575ff
Changed Files
| File | Additions | Deletions | Status |
| test/test-network | +4 | -0 | modified |
Full Patch
diff --git a/test/test-network b/test/test-network
index 626cd99..3e8713f 100755
--- a/test/test-network
+++ b/test/test-network
@@ -25,6 +25,10 @@ if (len(args) < 1):
print("Usage: %s <address> [service]" % (sys.argv[0]))
sys.exit(1)
+# Fix-up in case of "connect" invocation that other scripts use
+if args[0] == "connect":
+ del args[:1]
+
if (len(args) < 2):
service = "panu"
else: