diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-24 02:05:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:20:16 -0500 |
commit | 443a22b7f77f8aa640b6c75b49d853d4614d34d1 (patch) | |
tree | 377bb76477708adcf16d5a860ef71bee86f2f85e /source4/torture | |
parent | a90eba6316b89c3e387e0c52af22b5344a5de2f2 (diff) | |
download | samba-443a22b7f77f8aa640b6c75b49d853d4614d34d1.tar.gz samba-443a22b7f77f8aa640b6c75b49d853d4614d34d1.tar.bz2 samba-443a22b7f77f8aa640b6c75b49d853d4614d34d1.zip |
r18860: fixed some code that bitrotted while we didn't have the safety check
with NTSTATUS, WERROR etc.
(This used to be commit fddb85bfa8bb5df7812d226a7a6f6fb41ccf107f)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/oxidresolve.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/rpc/oxidresolve.c b/source4/torture/rpc/oxidresolve.c index 3643a85485..7366d372fe 100644 --- a/source4/torture/rpc/oxidresolve.c +++ b/source4/torture/rpc/oxidresolve.c @@ -61,7 +61,7 @@ static int test_RemoteActivation(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, uin return 0; } - if(!W_ERROR_IS_OK(r.out.hr)) { + if(!W_ERROR_IS_OK(*r.out.hr)) { fprintf(stderr, "RemoteActivation: %s\n", win_errstr(*r.out.hr)); return 0; } |