diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-09-21 03:41:03 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-09-28 23:06:48 +0200 |
commit | 3fa29cdd943f18871b16fc845028fc39a5a7ad0d (patch) | |
tree | 0ddf312616eb5b9438ee7a5565d5671031abe24f | |
parent | bffa192bfea6dccfe56a1b5692333fd8f39cfe7a (diff) | |
download | samba-3fa29cdd943f18871b16fc845028fc39a5a7ad0d.tar.gz samba-3fa29cdd943f18871b16fc845028fc39a5a7ad0d.tar.bz2 samba-3fa29cdd943f18871b16fc845028fc39a5a7ad0d.zip |
pidl:NDR/Client: make the generated code look a bit nicer
metze
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm b/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm index 91eff08164..32309580f4 100644 --- a/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm +++ b/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm @@ -103,12 +103,12 @@ sub ParseFunction_r_Send($$$$) $self->pidl("return tevent_req_post(req, ev);"); $self->deindent; $self->pidl("}"); - $self->pidl(""); $submem = "state->out_mem_ctx"; } else { $self->pidl("state->out_mem_ctx = NULL;"); $submem = "state"; } + $self->pidl(""); $self->pidl("subreq = dcerpc_binding_handle_call_send(state, ev, h,"); $self->pidl("\t\tNULL, &ndr_table_$if->{NAME},"); |