diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-09-15 20:07:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:47 -0500 |
commit | d9b4bdd5bb32806162514f7e010a97d24fb94549 (patch) | |
tree | d72ab8f87bf4235dcb60450980e4db839fab9a62 /source4/rpc_server | |
parent | db0fdcf6ce8b3d02a5f720652f22a2b7167c5e26 (diff) | |
download | samba-d9b4bdd5bb32806162514f7e010a97d24fb94549.tar.gz samba-d9b4bdd5bb32806162514f7e010a97d24fb94549.tar.xz 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')
-rw-r--r-- | source4/rpc_server/echo/rpc_echo.c | 2 |
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 d7d7ef31c20..3de24fb3668 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; } |