diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-08-22 15:29:02 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-08-22 15:29:02 +0200 |
commit | 9faf2240c4a8f09f3f6c2c9bbd47e48520524e03 (patch) | |
tree | 3ce400e560526e78039a31465d9a92eb2314464c /runtime/syslogd-types.h | |
parent | 8985d50fea62e1794c8e1a12d09733007869a6b4 (diff) | |
download | rsyslog-9faf2240c4a8f09f3f6c2c9bbd47e48520524e03.tar.gz rsyslog-9faf2240c4a8f09f3f6c2c9bbd47e48520524e03.tar.bz2 rsyslog-9faf2240c4a8f09f3f6c2c9bbd47e48520524e03.zip |
changed TRUE/FALSE to RSTRUE/RSFALSE
This is done to prevent name claches with libraries.
Diffstat (limited to 'runtime/syslogd-types.h')
-rw-r--r-- | runtime/syslogd-types.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/syslogd-types.h b/runtime/syslogd-types.h index 30ce896a..6947a110 100644 --- a/runtime/syslogd-types.h +++ b/runtime/syslogd-types.h @@ -31,8 +31,9 @@ #include <syslog.h> #endif -#define FALSE 0 -#define TRUE 1 +/* we use RSTRUE/FALSE to prevent name claches with other packages */ +#define RSFALSE 0 +#define RSTRUE 1 #ifdef UT_NAMESIZE # define UNAMESZ UT_NAMESIZE /* length of a login name */ |