summaryrefslogtreecommitdiffstats
path: root/log.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-21 18:40:30 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-21 18:40:30 +0000
commit044ebf195237c2c5ea13df5f1f93d61eaacf9d7b (patch)
tree5c514431943ad70913727c50de124e9568a78372 /log.c
parentb9a179089b7edec7930115ac7f1b5ae8e96f8792 (diff)
Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found by
lint.
Diffstat (limited to 'log.c')
-rw-r--r--log.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/log.c b/log.c
index d0efaee1..3aeec59f 100644
--- a/log.c
+++ b/log.c
@@ -171,19 +171,6 @@ log_debug2(const char *msg, ...)
}
}
-/* Log a debug message at level 3. */
-void printflike1
-log_debug3(const char *msg, ...)
-{
- va_list ap;
-
- if (log_level > 2) {
- va_start(ap, msg);
- log_vwrite(LOG_DEBUG, msg, ap);
- va_end(ap);
- }
-}
-
/* Log a critical error, with error string if necessary, and die. */
__dead void
log_vfatal(const char *msg, va_list ap)