diff options
author | Theo Buehler <tb@openbsd.org> | 2023-12-14 18:28:55 +0100 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2024-03-03 15:32:50 -0600 |
commit | 682da5377280d45e4bf455ea898b352bb910bc56 (patch) | |
tree | 428bfc5b89d344136d86edc70300c2f540bc3fbd | |
parent | 7ca25961da5c4c4017bf56ce9a3650bf6d6b9ef1 (diff) | |
download | portable-682da5377280d45e4bf455ea898b352bb910bc56.tar.gz portable-682da5377280d45e4bf455ea898b352bb910bc56.tar.bz2 portable-682da5377280d45e4bf455ea898b352bb910bc56.zip |
Fix build on windows
-rw-r--r-- | include/compat/syslog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/compat/syslog.h b/include/compat/syslog.h index f400ff6..c7a2608 100644 --- a/include/compat/syslog.h +++ b/include/compat/syslog.h | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <stdarg.h> | 15 | #include <stdarg.h> |
16 | 16 | ||
17 | #ifdef _WIN32 | 17 | #ifdef _WIN32 |
18 | #define LOG_CONS LOG_INFO | ||
18 | #define LOG_INFO 6 /* informational */ | 19 | #define LOG_INFO 6 /* informational */ |
19 | #define LOG_USER (1<<3) /* random user-level messages */ | 20 | #define LOG_USER (1<<3) /* random user-level messages */ |
20 | #define LOG_LOCAL2 (18<<3) /* reserved for local use */ | 21 | #define LOG_LOCAL2 (18<<3) /* reserved for local use */ |