diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-07-11 07:43:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:20:06 -0500 |
commit | 1864b27857c71b998dd201acaaa3c8664b8be960 (patch) | |
tree | 9358398c8ee05a48ba0fcb2c21e4730ffffb253d /testprogs/ejs/echo.js | |
parent | f583a85d4d520b0ab6ca83efd36e71563108b370 (diff) | |
download | samba-1864b27857c71b998dd201acaaa3c8664b8be960.tar.gz samba-1864b27857c71b998dd201acaaa3c8664b8be960.tar.xz 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-x | testprogs/ejs/echo.js | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/testprogs/ejs/echo.js b/testprogs/ejs/echo.js index 312e599d50b..e5b0b2b1bf3 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"); |