[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Wed Mar 10 15:09:19 MST 2010


The branch, master has been updated
       via  367ddc3... Fix bug #7234 - Symlink delete fails but incorrectly reports success to client.
      from  25d27ff... Revert "s4-smbtorture: disable winreg QueryValue test for today."

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 367ddc3d1b525525a9dae077335e33dc0017b58e
Author: Jeremy Allison <jra at samba.org>
Date:   Wed Mar 10 14:06:18 2010 -0800

    Fix bug #7234 - Symlink delete fails but incorrectly reports success to client.
    
    Typo called LSTAT instead of STAT in the unlink by pathname path.
    
    Jeremy.

-----------------------------------------------------------------------

Summary of changes:
 source3/smbd/reply.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index 7147fbe..7d0fa77 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -2403,7 +2403,7 @@ static NTSTATUS do_unlink(connection_struct *conn,
 	if (posix_paths) {
 		ret = SMB_VFS_LSTAT(conn, smb_fname);
 	} else {
-		ret = SMB_VFS_LSTAT(conn, smb_fname);
+		ret = SMB_VFS_STAT(conn, smb_fname);
 	}
 	if (ret != 0) {
 		return map_nt_error_from_unix(errno);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list