summaryrefslogtreecommitdiff
path: root/source4/scripting
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-05-29 21:45:38 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:17:13 -0500
commit0b2f972c8a5205f648ed747b04c5232c694afd30 (patch)
tree2fdaff6569498d0ebff7701bf1dcbd9ed2be5a1a /source4/scripting
parent6782622296667e5ad4fce512bbb879f35351ad46 (diff)
downloadsamba-0b2f972c8a5205f648ed747b04c5232c694afd30.tar.gz
samba-0b2f972c8a5205f648ed747b04c5232c694afd30.tar.bz2
samba-0b2f972c8a5205f648ed747b04c5232c694afd30.zip
r7080: Fix typo in error message.
(This used to be commit fcf177c86e2bfbc993352b80824487e5df0a3f63)
Diffstat (limited to 'source4/scripting')
-rw-r--r--source4/scripting/ejs/smbscript.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/ejs/smbscript.c b/source4/scripting/ejs/smbscript.c
index 021dafa4ae..a15fce57b0 100644
--- a/source4/scripting/ejs/smbscript.c
+++ b/source4/scripting/ejs/smbscript.c
@@ -80,7 +80,7 @@ void ejs_exception(const char *reason)
/* run the script */
if (ejsEvalFile(eid, discard_const_p(char, argv[1]), &result,
&emsg) == -1) {
- fprintf(stderr, "smbscript: ejsEvalScript(): %s\n", emsg);
+ fprintf(stderr, "smbscript: ejsEvalFile(): %s\n", emsg);
exit(1);
}