summaryrefslogtreecommitdiff
path: root/testprogs/ejs/echo.js
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-07-11 07:43:36 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:20:06 -0500
commit1864b27857c71b998dd201acaaa3c8664b8be960 (patch)
tree9358398c8ee05a48ba0fcb2c21e4730ffffb253d /testprogs/ejs/echo.js
parentf583a85d4d520b0ab6ca83efd36e71563108b370 (diff)
downloadsamba-1864b27857c71b998dd201acaaa3c8664b8be960.tar.gz
samba-1864b27857c71b998dd201acaaa3c8664b8be960.tar.bz2
samba-1864b27857c71b998dd201acaaa3c8664b8be960.zip
r8317: convert the example scripts over to the new GetOptions() call
(This used to be commit 5f079d74630cf6431ec8af7240f60054cf8b9ab7)
Diffstat (limited to 'testprogs/ejs/echo.js')
-rwxr-xr-xtestprogs/ejs/echo.js17
1 files changed, 16 insertions, 1 deletions
diff --git a/testprogs/ejs/echo.js b/testprogs/ejs/echo.js
index 312e599d50..e5b0b2b1bf 100755
--- a/testprogs/ejs/echo.js
+++ b/testprogs/ejs/echo.js
@@ -3,6 +3,17 @@
test echo pipe calls from ejs
*/
+var options = new Object();
+
+ok = GetOptions(ARGV, options,
+ "POPT_AUTOHELP",
+ "POPT_COMMON_SAMBA",
+ "POPT_COMMON_CREDENTIALS");
+if (ok == false) {
+ println("Failed to parse options: " + options.ERROR);
+ return -1;
+}
+
libinclude("base.js");
/*
@@ -198,7 +209,11 @@ if (ARGV.length == 0) {
exit(0);
}
-var binding = ARGV[0];
+if (options.ARGV.length != 1) {
+ println("Usage: samr.js <BINDING>");
+ return -1;
+}
+var binding = options.ARGV[0];
var conn = new Object();
print("Connecting to " + binding + "\n");