diff options
author | Roger Dingledine <arma@torproject.org> | 2003-10-10 01:48:03 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-10-10 01:48:03 +0000 |
commit | 36fb8e839df7fadc5aac8be71cf026c4966cad76 (patch) | |
tree | 92f9531d49b490743a6427b1de3529b942858bab /src/common/log.h | |
parent | ecfb36823e2daadbf44fcb2c9f108acc2cfcd511 (diff) | |
download | tor-36fb8e839df7fadc5aac8be71cf026c4966cad76.tar.gz tor-36fb8e839df7fadc5aac8be71cf026c4966cad76.zip |
change WARNING to WARN
svn:r570
Diffstat (limited to 'src/common/log.h')
-rw-r--r-- | src/common/log.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/common/log.h b/src/common/log.h index 8e0e5fc33d..7c481379a0 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -9,15 +9,12 @@ #ifdef HAVE_SYSLOG_H #include <syslog.h> +#define LOG_WARN LOG_WARNING #else #define LOG_DEBUG 0 #define LOG_INFO 1 -#define LOG_NOTICE 2 -#define LOG_WARNING 3 +#define LOG_WARN 3 #define LOG_ERR 4 -#define LOG_CRIT 5 -#define LOG_ALERT 6 -#define LOG_EMERG 7 #endif /* magic to make GCC check for proper format strings. */ |