summaryrefslogtreecommitdiff
path: root/testprogs/ejs/argv.js
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-08-22 23:31:18 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:34:21 -0500
commitfef7a81478cb246a7d2fe29283a50d52501ccc33 (patch)
tree271e0ffd7985aa451a1448dd93d344fa501e5e85 /testprogs/ejs/argv.js
parent115945facab217f0744413c65ae485c07ffb52dc (diff)
downloadsamba-fef7a81478cb246a7d2fe29283a50d52501ccc33.tar.gz
samba-fef7a81478cb246a7d2fe29283a50d52501ccc33.tar.bz2
samba-fef7a81478cb246a7d2fe29283a50d52501ccc33.zip
r9491: fixed up a few scripts that need to be updated for the new GetOptions syntax. Mimir, its
a good idea to use grep -r to find places that need fixing when you change the syntax of a call :-) (This used to be commit 1ead49f8e823a69dbd9cd3df3f5be04dc17e0d1f)
Diffstat (limited to 'testprogs/ejs/argv.js')
-rw-r--r--testprogs/ejs/argv.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/testprogs/ejs/argv.js b/testprogs/ejs/argv.js
index 093123014a..ffb6e007eb 100644
--- a/testprogs/ejs/argv.js
+++ b/testprogs/ejs/argv.js
@@ -2,16 +2,12 @@
demonstrate use of GetOptions
*/
-var ok;
-var options = new Object();
-
-ok = GetOptions(ARGV, options,
+var options = GetOptions(ARGV,
"POPT_AUTOHELP",
"POPT_COMMON_SAMBA",
"myopt=s",
"intopt=i",
"noopt");
-printVars(ok);
println("You called this script with arguments:");