[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha6-445-ga4c5054

Jeremy Allison jra at samba.org
Tue Feb 3 22:37:42 GMT 2009


The branch, master has been updated
       via  a4c5054b5a92c08498f522b39472d64a32a3cebb (commit)
      from  189a85dd68eb6c62272e51769d842afbf8389a4f (commit)

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


- Log -----------------------------------------------------------------
commit a4c5054b5a92c08498f522b39472d64a32a3cebb
Author: Miguel Suarez <Miguel.Suarez at stratus.com>
Date:   Tue Feb 3 14:36:50 2009 -0800

    Fix bug #6085 - In vfs_default.c change utime( ) call.

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

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


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index f8ac3e8..679be57 100644
--- a/source3/modules/vfs_default.c
+++ b/source3/modules/vfs_default.c
@@ -735,7 +735,7 @@ static int vfswrap_ntimes(vfs_handle_struct *handle, const char *path,
 		struct utimbuf times;
 		times.actime = convert_timespec_to_time_t(ft->atime);
 		times.modtime = convert_timespec_to_time_t(ft->mtime);
-		result = utime(path, times);
+		result = utime(path, &times);
 	} else {
 		result = utime(path, NULL);
 	}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list