From 09cf8c7dd82bb95e2f8782782286869654d96375 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 17 Jun 2008 14:21:02 +0200 Subject: [PATCH] Use friendly NTSTATUS message in python code when possible. --- source/libcli/util/pyerrors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libcli/util/pyerrors.h b/source/libcli/util/pyerrors.h index aaa35b4d2606..47e6f58b5db7 100644 --- a/source/libcli/util/pyerrors.h +++ b/source/libcli/util/pyerrors.h @@ -22,7 +22,7 @@ #define PyErr_FromWERROR(err) Py_BuildValue("(i,s)", W_ERROR_V(err), discard_const_p(char, win_errstr(err))) -#define PyErr_FromNTSTATUS(status) Py_BuildValue("(i,s)", NT_STATUS_V(status), discard_const_p(char, nt_errstr(status))) +#define PyErr_FromNTSTATUS(status) Py_BuildValue("(i,s)", NT_STATUS_V(status), discard_const_p(char, get_friendly_nt_error_msg(status))) #define PyErr_SetWERROR(err) \ PyErr_SetObject(PyExc_RuntimeError, PyErr_FromWERROR(err)) -- 2.34.1