summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/log.c12
-rw-r--r--src/log.h1
2 files changed, 0 insertions, 13 deletions
diff --git a/src/log.c b/src/log.c
index 0c55ca8..b4f073a 100644
--- a/src/log.c
+++ b/src/log.c
@@ -87,18 +87,6 @@ void close_log_file (void)
}
/*
- * 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.
*/
void set_log_level (int level)
diff --git a/src/log.h b/src/log.h
index 3a6b595..030e174 100644
--- a/src/log.h
+++ b/src/log.h
@@ -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);