summaryrefslogtreecommitdiffstats
path: root/sysdep/unix/unix.h
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2010-04-07 11:00:36 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2010-04-07 15:34:45 +0200
commit44d4ab7a960cf143c43d1645f2985cc9d74e3077 (patch)
tree6fb7e65191951bce4d92c7b93d3a76dcf1fd9b6d /sysdep/unix/unix.h
parentb8113a5e92cb19a0910041d5708f4eafeb713b54 (diff)
downloadbird-44d4ab7a960cf143c43d1645f2985cc9d74e3077.tar
bird-44d4ab7a960cf143c43d1645f2985cc9d74e3077.zip
Configurable syslog name.
Also fixes a bug in syslog initialization.
Diffstat (limited to 'sysdep/unix/unix.h')
-rw-r--r--sysdep/unix/unix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdep/unix/unix.h b/sysdep/unix/unix.h
index 4de74f2..76825aa 100644
--- a/sysdep/unix/unix.h
+++ b/sysdep/unix/unix.h
@@ -15,6 +15,7 @@ struct pool;
/* main.c */
+extern char *bird_name;
void async_config(void);
void async_dump(void);
void async_shutdown(void);
@@ -60,9 +61,8 @@ void krt_io_init(void);
/* log.c */
-void log_init(int debug, int init);
void log_init_debug(char *); /* Initialize debug dump to given file (NULL=stderr, ""=off) */
-void log_switch(int debug, struct list *);
+void log_switch(int debug, list *l, char *); /* Use l=NULL for initial switch */
struct log_config {
node n;