1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r5427: NTSTATUS is treated by pidl as a 'real' scalar now.

This commit is contained in:
Jelmer Vernooij 2005-02-17 11:42:38 +00:00 committed by Gerald (Jerry) Carter
parent 40547ed33f
commit fa97059d00

View File

@ -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));
}
/*