Don't ignore retval of ftruncate() in utils.c

master
Mukund Sivaraman 2009-09-23 07:28:20 +05:30
parent 1586b39138
commit 0ecb688269
1 changed files with 5 additions and 1 deletions

View File

@ -28,6 +28,7 @@
#include "conns.h"
#include "heap.h"
#include "http-message.h"
#include "log.h"
#include "utils.h"
/*
@ -158,7 +159,10 @@ int create_file_safely (const char *filename, unsigned int truncate_file)
* ("Little sympathy has been extended")
*/
#ifdef HAVE_FTRUNCATE
ftruncate (fildes, 0);
if (ftruncate (fildes, 0) != 0) {
log_message (LOG_WARNING,
"Unable to truncate file '%s'", filename);
}
#else
close (fildes);
if ((fildes =