diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-06-01 00:00:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:21 -0500 |
commit | 03c2d642a620380d96a9e745ceb1cd19ffea2160 (patch) | |
tree | 351938707b57f8f3ed29a966d48d858f562d250d /source4/rpc_server/echo | |
parent | 5ec5e7aa29ef4abf6b60a0de4947693d3e587f74 (diff) | |
download | samba-03c2d642a620380d96a9e745ceb1cd19ffea2160.tar.gz samba-03c2d642a620380d96a9e745ceb1cd19ffea2160.tar.bz2 samba-03c2d642a620380d96a9e745ceb1cd19ffea2160.zip |
r7159: Improve the messages from pidl's validator module.
Change the IDL file for the echo interface to match the one we use for
Windows. The only thing different between the two files currently is the
names of the scalar types and the handling of strings.
(This used to be commit b264c61061d222347919837600adf809fbadfb13)
Diffstat (limited to 'source4/rpc_server/echo')
-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 daf16e12d7..057d89a866 100644 --- a/source4/rpc_server/echo/rpc_echo.c +++ b/source4/rpc_server/echo/rpc_echo.c @@ -30,7 +30,7 @@ static NTSTATUS echo_AddOne(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct echo_AddOne *r) { - *r->out.v = *r->in.v + 1; + *r->out.out_data = r->in.in_data + 1; return NT_STATUS_OK; } |