From 400c18a8c4098b4ba86d32a236e5d89014774f3f Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 8 Jul 2009 18:05:30 -0700 Subject: Rename update_stat_ex_writetime() -> update_stat_ex_mtime() to better describe what we're doing here. Jeremy --- source3/lib/system.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib') 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; -- cgit