s4-smbtorture: fix test_ReportEventLog in RPC-EVENTLOG.
authorGünther Deschner <gd@samba.org>
Wed, 8 Apr 2009 17:18:49 +0000 (19:18 +0200)
committerGünther Deschner <gd@samba.org>
Wed, 8 Apr 2009 17:45:58 +0000 (19:45 +0200)
Guenther

source4/torture/rpc/eventlog.c

index 10c4886259be251a5260ca98b15448637fa53a00..865b4e2217e3860d796845e48f44791bdd579d31 100644 (file)
@@ -203,7 +203,6 @@ static bool test_ReadEventLog(struct torture_context *tctx,
 static bool test_ReportEventLog(struct torture_context *tctx,
                                struct dcerpc_pipe *p)
 {
-       NTSTATUS status;
        struct eventlog_ReportEventW r;
        struct eventlog_CloseEventLog cr;
        struct policy_handle handle;
@@ -237,7 +236,9 @@ static bool test_ReportEventLog(struct torture_context *tctx,
        r.out.record_number = &record_number;
        r.out.time_written = &time_written;
 
-       status = dcerpc_eventlog_ReportEventW(p, tctx, &r);
+       torture_assert_ntstatus_ok(tctx,
+                       dcerpc_eventlog_ReportEventW(p, tctx, &r),
+                       "ReportEventW failed");
 
        torture_assert_ntstatus_ok(tctx, r.out.result, "ReportEventW failed");