The branch, v3-0-test has been updated
       via  7a1408f89f1addff993d1e2dfb7462d12d0a2f48 (commit)
      from  d3220d9d58477f2a6ef7a78c3cf05cb232b57aff (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-0-test


- Log -----------------------------------------------------------------
commit 7a1408f89f1addff993d1e2dfb7462d12d0a2f48
Author: Miguel Suarez <[email protected]>
Date:   Tue Feb 3 14:31:51 2009 -0800

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

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

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


Changeset truncated at 500 lines:

diff --git a/source/modules/vfs_default.c b/source/modules/vfs_default.c
index 4cc6e88..2dd8443 100644
--- a/source/modules/vfs_default.c
+++ b/source/modules/vfs_default.c
@@ -635,7 +635,7 @@ static int vfswrap_ntimes(vfs_handle_struct *handle, const 
char *path, const str
                struct utimbuf times;
                times.actime = convert_timespec_to_time_t(ts[0]);
                times.modtime = convert_timespec_to_time_t(ts[1]);
-               result = utime(path, times);
+               result = utime(path, &times);
        }
 #else
        errno = ENOSYS;


-- 
Samba Shared Repository

Reply via email to