summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/syslog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/ipxe/syslog.h')
-rw-r--r--src/include/ipxe/syslog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/ipxe/syslog.h b/src/include/ipxe/syslog.h
index 256ac7613..035ca6700 100644
--- a/src/include/ipxe/syslog.h
+++ b/src/include/ipxe/syslog.h
@@ -20,17 +20,17 @@ FILE_LICENCE ( GPL2_OR_LATER );
*/
#define SYSLOG_BUFSIZE 128
-/** Syslog facility
+/** Syslog default facility
*
* This is a policy decision
*/
-#define SYSLOG_FACILITY 0 /* kernel */
+#define SYSLOG_DEFAULT_FACILITY 0 /* kernel */
-/** Syslog severity
+/** Syslog default severity
*
* This is a policy decision
*/
-#define SYSLOG_SEVERITY LOG_INFO
+#define SYSLOG_DEFAULT_SEVERITY LOG_INFO
/** Syslog priority */
#define SYSLOG_PRIORITY( facility, severity ) ( 8 * (facility) + (severity) )