summaryrefslogtreecommitdiff
path: root/source3/torture/torture.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-10-05 21:28:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:31:12 -0500
commit9d1a95ac9c780339c80cbb0fe3fdf3a78d8c7059 (patch)
treecfadc759a9ee08f56495b2443d192702a260ec9e /source3/torture/torture.c
parent3cc2fb5e33033089e03f9ccc4c388b213b54d10b (diff)
downloadsamba-9d1a95ac9c780339c80cbb0fe3fdf3a78d8c7059.tar.gz
samba-9d1a95ac9c780339c80cbb0fe3fdf3a78d8c7059.tar.bz2
samba-9d1a95ac9c780339c80cbb0fe3fdf3a78d8c7059.zip
r25533: remove a pstring
(This used to be commit 0f2552e20fb66b0b80006a8a7b999ccf6f54c656)
Diffstat (limited to 'source3/torture/torture.c')
-rw-r--r--source3/torture/torture.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c
index 6d0fc546ab..e48448e5da 100644
--- a/source3/torture/torture.c
+++ b/source3/torture/torture.c
@@ -4768,14 +4768,14 @@ static BOOL run_error_map_extract(int dummy) {
if (NT_STATUS_V(nt_status) != error) {
printf("/*\t{ This NT error code was 'sqashed'\n\t from %s to %s \n\t during the session setup }\n*/\n",
- get_nt_error_c_code(NT_STATUS(error)),
- get_nt_error_c_code(nt_status));
+ nt_errstr(NT_STATUS(error)),
+ nt_errstr(nt_status));
}
printf("\t{%s,\t%s,\t%s},\n",
smb_dos_err_class(errclass),
smb_dos_err_name(errclass, errnum),
- get_nt_error_c_code(NT_STATUS(error)));
+ nt_errstr(NT_STATUS(error)));
}
return True;
}