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/reply.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/smbd/reply.c') diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index e02482ea4a..0afaf56c96 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -1121,7 +1121,7 @@ void reply_getatr(struct smb_request *req) fileid = vfs_file_id_from_sbuf(conn, &smb_fname->st); get_file_infos(fileid, NULL, &write_time_ts); if (!null_timespec(write_time_ts)) { - update_stat_ex_writetime(&smb_fname->st, write_time_ts); + update_stat_ex_mtime(&smb_fname->st, write_time_ts); } } @@ -1803,7 +1803,7 @@ void reply_open(struct smb_request *req) ZERO_STRUCT(write_time_ts); get_file_infos(fsp->file_id, NULL, &write_time_ts); if (!null_timespec(write_time_ts)) { - update_stat_ex_writetime(&smb_fname->st, write_time_ts); + update_stat_ex_mtime(&smb_fname->st, write_time_ts); } } -- cgit