diff options
author | Tim Potter <tpot@samba.org> | 2004-09-20 00:55:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:51 -0500 |
commit | 6d82eaa7e9597ebaf292e21e00345be0c50287bf (patch) | |
tree | f19d1672e086f9a5d237a9d419d9c2dff6506327 /source4/scripting | |
parent | cb3cacdf402d91722b67b494f36abac0280fc5b9 (diff) | |
download | samba-6d82eaa7e9597ebaf292e21e00345be0c50287bf.tar.gz samba-6d82eaa7e9597ebaf292e21e00345be0c50287bf.tar.bz2 samba-6d82eaa7e9597ebaf292e21e00345be0c50287bf.zip |
r2424: Refactor handling of non-OK NTSTATUS returns to be more swiggish.
(This used to be commit aaef6eaf6e0c38fb277d1be0617dfdff559a0115)
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/swig/dcerpc.i | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source4/scripting/swig/dcerpc.i b/source4/scripting/swig/dcerpc.i index bded875b10..9677d4e62d 100644 --- a/source4/scripting/swig/dcerpc.i +++ b/source4/scripting/swig/dcerpc.i @@ -285,6 +285,16 @@ NTSTATUS dcerpc_pipe_connect(struct dcerpc_pipe **OUT, const char *username, const char *password); +/* Run this test after each wrapped function */ + +%exception { + $action + if (!NT_STATUS_IS_OK(result)) { + set_ntstatus_exception(NT_STATUS_V(result)); + return NULL; + } +} + %include "librpc/gen_ndr/misc.i" %include "librpc/gen_ndr/lsa.i" %include "librpc/gen_ndr/samr.i" |