summaryrefslogtreecommitdiff
path: root/source4/libcli/util/errors.i
diff options
context:
space:
mode:
Diffstat (limited to 'source4/libcli/util/errors.i')
-rw-r--r--source4/libcli/util/errors.i6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/libcli/util/errors.i b/source4/libcli/util/errors.i
index 8d97daf537..3f6efda468 100644
--- a/source4/libcli/util/errors.i
+++ b/source4/libcli/util/errors.i
@@ -18,7 +18,7 @@
*/
#ifdef SWIGPYTHON
-%typemap(out) WERROR {
+%typemap(out,noblock=1) WERROR {
if (!W_ERROR_IS_OK($1)) {
PyObject *obj = Py_BuildValue("(i,s)", $1.v, win_errstr($1));
PyErr_SetObject(PyExc_RuntimeError, obj);
@@ -28,7 +28,7 @@
}
};
-%typemap(out) NTSTATUS {
+%typemap(out,noblock=1) NTSTATUS {
if (NT_STATUS_IS_ERR($1)) {
PyObject *obj = Py_BuildValue("(i,s)", $1.v, nt_errstr($1));
PyErr_SetObject(PyExc_RuntimeError, obj);
@@ -38,7 +38,7 @@
}
};
-%typemap(in) NTSTATUS {
+%typemap(in,noblock=1) NTSTATUS {
if (PyLong_Check($input))
$1 = NT_STATUS(PyLong_AsUnsignedLong($input));
else if (PyInt_Check($input))