samba-cvs.cvs
[Top] [All Lists]

[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0

Subject: [SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-3426-g16e9f1e
From: Jeremy Allison
Date: Tue, 3 Feb 2009 16:36:55 -0600 CST
The branch, v3-2-test has been updated
       via  16e9f1e2d4a1d391efdf8348fa7f57b2640a6bdb (commit)
      from  268be70cecd5025b0512372cff572095be763af1 (commit)

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


- Log -----------------------------------------------------------------
commit 16e9f1e2d4a1d391efdf8348fa7f57b2640a6bdb
Author: Miguel Suarez <Miguel.Suarez@xxxxxxxxxxx>
Date:   Tue Feb 3 14:35:19 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 2da97f1..f3cebd6 100644
--- a/source/modules/vfs_default.c
+++ b/source/modules/vfs_default.c
@@ -670,7 +670,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 {
                result = utime(path, NULL);
        }


-- 
Samba Shared Repository

<Prev in Thread] Current Thread [Next in Thread>
  • [SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-3426-g16e9f1e, Jeremy Allison <=