diff options
author | Jeremy Allison <jra@samba.org> | 2009-07-08 18:05:30 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-07-08 18:05:30 -0700 |
commit | 400c18a8c4098b4ba86d32a236e5d89014774f3f (patch) | |
tree | 6eecf05a0acabaf15664062a0105d5e2d4780cae /source3/lib | |
parent | c9c3d4312d7281904fc4a1cc9abd4831cdf4bfb9 (diff) | |
download | samba-400c18a8c4098b4ba86d32a236e5d89014774f3f.tar.gz samba-400c18a8c4098b4ba86d32a236e5d89014774f3f.tar.bz2 samba-400c18a8c4098b4ba86d32a236e5d89014774f3f.zip |
Rename update_stat_ex_writetime() -> update_stat_ex_mtime()
to better describe what we're doing here.
Jeremy
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/system.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index b808a36d17..ffc236e93b 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -492,10 +492,10 @@ static void get_create_timespec(const struct stat *pst, struct stat_ex *dst) /**************************************************************************** If we update a timestamp in a stat_ex struct we may have to recalculate the birthtime. For now only implement this for write time, but we may - also need to do it for mtime and ctime. JRA. + also need to do it for atime and ctime. JRA. ****************************************************************************/ -void update_stat_ex_writetime(struct stat_ex *dst, +void update_stat_ex_mtime(struct stat_ex *dst, struct timespec write_ts) { dst->st_ex_mtime = write_ts; |