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/smbd/trans2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/smbd/trans2.c') diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index cb4f10fa79..0dd2ca2e3c 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -1463,7 +1463,7 @@ static bool get_lanman2_dir_entry(TALLOC_CTX *ctx, fileid = vfs_file_id_from_sbuf(conn, &sbuf); get_file_infos(fileid, NULL, &write_time_ts); if (!null_timespec(write_time_ts)) { - update_stat_ex_writetime(&sbuf, write_time_ts); + update_stat_ex_mtime(&sbuf, write_time_ts); } } @@ -4258,7 +4258,7 @@ total_data=%u (should be %u)\n", (unsigned int)total_data, (unsigned int)IVAL(pd } if (!null_timespec(write_time_ts) && !INFO_LEVEL_IS_UNIX(info_level)) { - update_stat_ex_writetime(&sbuf, write_time_ts); + update_stat_ex_mtime(&sbuf, write_time_ts); } create_time_ts = sbuf.st_ex_btime; -- cgit