summaryrefslogtreecommitdiff
path: root/source4/scripting/ejs/ejsrpc.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-12-27 15:36:50 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:30:15 -0500
commit3c20e210de357e4f7b6dd54880110a56ae1d7eb0 (patch)
tree216e9498616a3d1acc3ba99a6b306b34333114ce /source4/scripting/ejs/ejsrpc.c
parent1757c0f0a44a2db80d39b7a3eddf48575a4faeae (diff)
downloadsamba-3c20e210de357e4f7b6dd54880110a56ae1d7eb0.tar.gz
samba-3c20e210de357e4f7b6dd54880110a56ae1d7eb0.tar.bz2
samba-3c20e210de357e4f7b6dd54880110a56ae1d7eb0.zip
r20358: - fix ejs generated code for ipv4address
- (not Parse::Pidl::Typelist::scalar_is_reference($e->{TYPE})) is much more generic than ($e->{TYPE} ne "string") and handles ipv4address and other special types... metze (This used to be commit 02d2ce65e614a0c99ef3246bc738eb0f8d91b24a)
Diffstat (limited to 'source4/scripting/ejs/ejsrpc.c')
-rw-r--r--source4/scripting/ejs/ejsrpc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/ejs/ejsrpc.c b/source4/scripting/ejs/ejsrpc.c
index c41cdd972b..fa5d880a1c 100644
--- a/source4/scripting/ejs/ejsrpc.c
+++ b/source4/scripting/ejs/ejsrpc.c
@@ -267,9 +267,9 @@ NTSTATUS ejs_pull_ipv4address(struct ejs_rpc *ejs,
push a ipv4address (internally a string)
*/
NTSTATUS ejs_push_ipv4address(struct ejs_rpc *ejs,
- struct MprVar *v, const char *name, char * const *s)
+ struct MprVar *v, const char *name, const char *s)
{
- return ejs_push_string(ejs, v, name, *s);
+ return ejs_push_string(ejs, v, name, s);
}