diff options
author | paul <paul> | 2003-07-26 06:05:18 +0000 |
---|---|---|
committer | paul <paul> | 2003-07-26 06:05:18 +0000 |
commit | 3447973d550a121e641068dd826bd72eae394ae6 (patch) | |
tree | bcc912d2d11f848506cfb14bf5a02cc1f9e92273 /lib/log.c | |
parent | 2fd2f99d820af4d5a81e2039c99d48c508bf2913 (diff) | |
download | quagga-3447973d550a121e641068dd826bd72eae394ae6.tar.bz2 quagga-3447973d550a121e641068dd826bd72eae394ae6.tar.xz |
2003-07-26 Paul Jakma <paul@dishone.st>
* lib/command.c: Add config_log_syslog_facility_cmd, to set
syslog facility. This was a commit to zebra.org on May 20,
merge in to zebra-pj.
Diffstat (limited to 'lib/log.c')
-rw-r--r-- | lib/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ vzlog (struct zlog *zl, int priority, const char *format, va_list *args) /* Syslog output */ if (zl->flags & ZLOG_SYSLOG) - vsyslog (priority, format, args[ZLOG_SYSLOG_INDEX]); + vsyslog (priority|zlog_default->facility, format, args[ZLOG_SYSLOG_INDEX]); /* File output. */ if (zl->flags & ZLOG_FILE) |