1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00

r2468: print out the names of the fault codes#

metze
(This used to be commit a0c2a3a5d4)
This commit is contained in:
Stefan Metzmacher 2004-09-21 08:11:53 +00:00 committed by Gerald (Jerry) Carter
parent 5d7f0dec9e
commit d9e43bc883

View File

@ -139,7 +139,7 @@ static void try_expand(TALLOC_CTX *mem_ctx, const struct dcerpc_interface_table
} else {
#if 0
print_depth(depth);
printf("expand by %d gives fault 0x%x\n", n, p->last_fault_code);
printf("expand by %d gives fault %s\n", n, dcerpc_errstr(mem_ctx, p->last_fault_code));
#endif
}
if (p->last_fault_code == 5) {
@ -171,8 +171,8 @@ static void test_ptr_scan(TALLOC_CTX *mem_ctx, const struct dcerpc_interface_tab
if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {
print_depth(depth);
printf("possible ptr at ofs %d - fault 0x%08x\n",
ofs-min_ofs, p->last_fault_code);
printf("possible ptr at ofs %d - fault %s\n",
ofs-min_ofs, dcerpc_errstr(mem_ctx, p->last_fault_code));
if (p->last_fault_code == 5) {
reopen(&p, iface);
}
@ -234,7 +234,7 @@ static void test_scan_call(TALLOC_CTX *mem_ctx, const struct dcerpc_interface_ta
}
if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {
printf("opnum %d size %d fault 0x%08x\n", opnum, i, p->last_fault_code);
printf("opnum %d size %d fault %s\n", opnum, i, dcerpc_errstr(mem_ctx, p->last_fault_code));
if (p->last_fault_code == 5) {
reopen(&p, iface);
}