summaryrefslogtreecommitdiff
path: root/source4/rpc_server/echo
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-09-15 20:07:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:18:47 -0500
commitd9b4bdd5bb32806162514f7e010a97d24fb94549 (patch)
treed72ab8f87bf4235dcb60450980e4db839fab9a62 /source4/rpc_server/echo
parentdb0fdcf6ce8b3d02a5f720652f22a2b7167c5e26 (diff)
downloadsamba-d9b4bdd5bb32806162514f7e010a97d24fb94549.tar.gz
samba-d9b4bdd5bb32806162514f7e010a97d24fb94549.tar.bz2
samba-d9b4bdd5bb32806162514f7e010a97d24fb94549.zip
r18565: Fix echo.idl to be Samba3-, MIDL and midlc compatible
(This used to be commit ab0a798c57564901f0adcd8aedc1ef0928e79edd)
Diffstat (limited to 'source4/rpc_server/echo')
-rw-r--r--source4/rpc_server/echo/rpc_echo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/rpc_server/echo/rpc_echo.c b/source4/rpc_server/echo/rpc_echo.c
index d7d7ef31c2..3de24fb366 100644
--- a/source4/rpc_server/echo/rpc_echo.c
+++ b/source4/rpc_server/echo/rpc_echo.c
@@ -68,7 +68,7 @@ static NTSTATUS echo_SourceData(struct dcesrv_call_state *dce_call, TALLOC_CTX *
static NTSTATUS echo_TestCall(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct echo_TestCall *r)
{
- r->out.s2 = talloc_strdup(mem_ctx, "this is a test string");
+ *r->out.s2 = talloc_strdup(mem_ctx, "this is a test string");
return NT_STATUS_OK;
}