log: remove unneeded truncate_log_file().

Michael
This commit is contained in:
Michael Adam 2009-12-23 00:31:03 +01:00
parent c07cd2e44e
commit 4a11f9f08f
2 changed files with 0 additions and 13 deletions

View File

@ -86,18 +86,6 @@ void close_log_file (void)
log_file_fd = -1;
}
/*
* Truncate log file to a zero length.
*/
void truncate_log_file (void)
{
lseek (log_file_fd, 0, SEEK_SET);
if (ftruncate (log_file_fd, 0) != 0) {
log_message (LOG_WARNING,
"Unable to truncate log file to zero length");
}
}
/*
* Set the log level for writing to the log file.
*/

View File

@ -111,7 +111,6 @@
extern int open_log_file (const char *file);
extern void close_log_file (void);
extern void truncate_log_file (void);
extern void log_message (int level, const char *fmt, ...);
extern void set_log_level (int level);