The branch, master has been updated via 63029eb s3: Fix a missing return value from 98612fe s3-spoolss: make sure members of "BUILTIN\Print Operators" can open printers with admin privileges.
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 63029eb24b9a9b57fbf85b611a66b39b8100a5e3 Author: Volker Lendecke <v...@samba.org> Date: Wed Nov 17 20:54:41 2010 +0100 s3: Fix a missing return value Autobuild-User: Volker Lendecke <vlen...@samba.org> Autobuild-Date: Wed Nov 17 20:40:18 UTC 2010 on sn-devel-104 ----------------------------------------------------------------------- Summary of changes: source3/torture/nbio.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) Changeset truncated at 500 lines: diff --git a/source3/torture/nbio.c b/source3/torture/nbio.c index f4625ab..a514245 100644 --- a/source3/torture/nbio.c +++ b/source3/torture/nbio.c @@ -290,7 +290,9 @@ static NTSTATUS delete_fn(const char *mnt, struct file_info *finfo, { NTSTATUS status; char *s, *n; - if (finfo->name[0] == '.') return; + if (finfo->name[0] == '.') { + return NT_STATUS_OK; + } n = SMB_STRDUP(name); n[strlen(n)-1] = 0; -- Samba Shared Repository