From 0ecb6882694661cc45f82a9ebe5d9ae4a14186c0 Mon Sep 17 00:00:00 2001 From: Mukund Sivaraman Date: Wed, 23 Sep 2009 07:28:20 +0530 Subject: [PATCH] Don't ignore retval of ftruncate() in utils.c --- src/utils.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/utils.c b/src/utils.c index 679d027..239952c 100644 --- a/src/utils.c +++ b/src/utils.c @@ -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 =