mirror of
https://github.com/samba-team/samba.git
synced 2025-03-24 10:50:22 +03:00
r5427: NTSTATUS is treated by pidl as a 'real' scalar now.
(This used to be commit fa97059d000859b3d0192ed4a0135770888aba6f)
This commit is contained in:
parent
a2a7869d06
commit
a2aa220709
@ -180,9 +180,9 @@ NTSTATUS ndr_push_NTSTATUS(struct ndr_push *ndr, int ndr_flags, NTSTATUS status)
|
||||
return ndr_push_uint32(ndr, ndr_flags, NT_STATUS_V(status));
|
||||
}
|
||||
|
||||
void ndr_print_NTSTATUS(struct ndr_print *ndr, const char *name, NTSTATUS *r)
|
||||
void ndr_print_NTSTATUS(struct ndr_print *ndr, const char *name, NTSTATUS r)
|
||||
{
|
||||
ndr->print(ndr, "%-25s: %s", name, nt_errstr(*r));
|
||||
ndr->print(ndr, "%-25s: %s", name, nt_errstr(r));
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user