diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-09-13 15:54:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:35 -0500 |
commit | ea50e4f30aad94320c7d8bbc3e33dd6b10777bbe (patch) | |
tree | 5a7fd6606770715f9f10cae225ac3c4bb9fc7784 | |
parent | 6a2b54149723d283878e3295bfe3a48d67e2d495 (diff) | |
download | samba-ea50e4f30aad94320c7d8bbc3e33dd6b10777bbe.tar.gz samba-ea50e4f30aad94320c7d8bbc3e33dd6b10777bbe.tar.bz2 samba-ea50e4f30aad94320c7d8bbc3e33dd6b10777bbe.zip |
r18478: Add missing declaration for status.
(This used to be commit 64909a0d69a938e96f7a04b4288ca851fb8fe18a)
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm b/source4/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm index 7fba856617..47e18fee69 100644 --- a/source4/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm +++ b/source4/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm @@ -35,6 +35,7 @@ sub ParseFunction($$) indent; pidl "struct ndr_pull *pull;"; pidl "struct ndr_push *push;"; + pidl "NTSTATUS status;"; pidl "DATA_BLOB blob;"; pidl "struct $fn->{NAME} r;"; pidl "TALLOC_CTX *mem_ctx = talloc_init(\"api_$fn->{NAME}\");"; |