mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
handle non-NTSTATUS return types
This commit is contained in:
parent
060421c7dc
commit
5832a1447c
@ -17,7 +17,7 @@ sub ParseFunction($)
|
||||
my $name = $fn->{NAME};
|
||||
my $uname = uc $name;
|
||||
|
||||
if ($fn->{RETURN_TYPE} eq "void") {
|
||||
if ($fn->{RETURN_TYPE} ne "NTSTATUS") {
|
||||
$res .= "
|
||||
NTSTATUS dcerpc_$name(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, struct $name *r)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user