search for: update_write_time_on_close

Displaying 1 result from an estimated 1 matches for "update_write_time_on_close".

2011 Jan 23
0
Samba files_struct: "bool modified" and "bool update_write_time_on_close"
Hi All, I have been going through the samba 3.5.3 code for quite some time now. I have been examining the various elements in the structure "files_struct", which samba uses. I find the following two elements of particular interest here: bool modified; bool update_write_time_on_close; I see that "modified" is set to true whenever something is written into the file. (in the function: write_file() of fileio.c) I further see that right after "modified" is set to true (in the function: write_file() of fileio.c), "trigger_write_time_update()" is called...