* lib/commonio.c: Call fsync before closing the backup file. This

ensures that the backup file is flushed to the storage medium.
This commit is contained in:
nekral-guest 2009-03-21 19:12:00 +00:00
parent df7abc5447
commit 5dd5f51700
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-03-21 Nicolas François <nicolas.francois@centraliens.net>
* lib/commonio.c: Call fsync before closing the backup file. This
ensures that the backup file is flushed to the storage medium.
2009-03-15 Nicolas François <nicolas.francois@centraliens.net>
* src/groupmod.c: Embed gshadow related cleanup in #ifdef

View File

@ -251,7 +251,8 @@ static int create_backup (const char *backup, FILE * fp)
fclose (bkfp);
return -1;
}
if (fclose (bkfp) != 0) {
if ( (fsync (fileno (bkfp)) != 0)
|| (fclose (bkfp) != 0)) {
return -1;
}