Implement fallback version of futimes instead of testing for it's existance in reader.c

darcs-hash:20060621141544-ac50b-4726e3f63644b64b8bbb5cd829383c1fc6f8d86e.gz
This commit is contained in:
axel
2006-06-22 00:15:44 +10:00
parent 2076944268
commit e42198b7c8
3 changed files with 24 additions and 2 deletions

View File

@@ -962,7 +962,6 @@ static void check_colors()
static void reader_save_status()
{
#ifdef HAVE_FUTIMES
/*
This futimes call tries to trick the system into using st_mtime
as a tampering flag. This of course only works on systems where
@@ -983,9 +982,13 @@ static void reader_save_status()
}
;
/*
Don't check return value on these. We don't care if they fail,
really. This is all just to make the prompt look ok, which is
impossible to do 100% reliably. We try, at least.
*/
futimes( 1, t );
futimes( 2, t );
#endif
fstat( 1, &prev_buff_1 );
fstat( 2, &prev_buff_2 );