From 9c89a30113df8b5a2ebf971f5e1fbb32ba1dc40c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 24 Sep 2004 00:42:20 +0000 Subject: r2572: fixed two places where status is not initialised in the nbench backend (This used to be commit 4103392a597349890e0e7ea1c41d5b0ab3816853) --- source4/ntvfs/nbench/vfs_nbench.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source4/ntvfs/nbench/vfs_nbench.c b/source4/ntvfs/nbench/vfs_nbench.c index b88c65d5db..eebf6f1dde 100644 --- a/source4/ntvfs/nbench/vfs_nbench.c +++ b/source4/ntvfs/nbench/vfs_nbench.c @@ -110,7 +110,7 @@ static NTSTATUS nbench_connect(struct smbsrv_request *req, const char *sharename ntvfs_set_private(req->tcon, depth, private); - PASS_THRU(req->tcon, connect, (req, sharename, depth+1)); + status = PASS_THRU(req->tcon, connect, (req, sharename, depth+1)); return status; } @@ -125,7 +125,7 @@ static NTSTATUS nbench_disconnect(struct smbsrv_tcon *tcon, int depth) close(private->log_fd); - PASS_THRU(tcon, disconnect, (tcon, depth+1)); + status = PASS_THRU(tcon, disconnect, (tcon, depth+1)); return status; } -- cgit