From f8314c27b3804dc95c973f1577e3e40d7c91ae43 Mon Sep 17 00:00:00 2001
From: Günther Deschner <gd@samba.org>
Date: Tue, 19 Jan 2010 17:15:05 +0100
Subject: s4-smbtorture: remove unneeded ncaclrpc dir setup from
 RPC-SPOOLSS-NOTIFY.

Guenther
---
 source4/torture/rpc/spoolss_notify.c | 10 ----------
 1 file changed, 10 deletions(-)

(limited to 'source4/torture')

diff --git a/source4/torture/rpc/spoolss_notify.c b/source4/torture/rpc/spoolss_notify.c
index c6ff706374..bce85caa20 100644
--- a/source4/torture/rpc/spoolss_notify.c
+++ b/source4/torture/rpc/spoolss_notify.c
@@ -283,16 +283,6 @@ static bool test_RFFPCNEx(struct torture_context *tctx,
 	torture_assert_ntstatus_ok(tctx, status,
 				   "unable to initialize DCE/RPC server");
 
-	/* Make sure the directory for NCALRPC exists */
-	if (!directory_exist(lp_ncalrpc_dir(tctx->lp_ctx))) {
-		int ret;
-		ret = mkdir(lp_ncalrpc_dir(tctx->lp_ctx), 0755);
-		torture_assert(tctx, (ret == 0), talloc_asprintf(tctx,
-			       "failed to mkdir(%s) ret[%d] errno[%d - %s]",
-			       lp_ncalrpc_dir(tctx->lp_ctx), ret,
-			       errno, strerror(errno)));
-	}
-
 	for (e=dce_ctx->endpoint_list;e;e=e->next) {
 		status = dcesrv_add_ep(dce_ctx, tctx->lp_ctx,
 				       e, tctx->ev, &single_ops);
-- 
cgit