diff options
| author | Alexander Barton <alex@barton.de> | 2005-07-30 22:53:16 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2005-07-30 22:53:16 +0000 |
| commit | b61407713dab7f01ef98b9ee43c7f9e449c3b6f4 (patch) | |
| tree | 99495ca054388007a147e6660f1c17eecdb8fa77 | |
| parent | b120c2a2714fcc26a3dfff1315a92e19850cfca8 (diff) | |
| download | ngircd-b61407713dab7f01ef98b9ee43c7f9e449c3b6f4.tar.gz ngircd-b61407713dab7f01ef98b9ee43c7f9e449c3b6f4.zip | |
Removed "U" unsignet suffix: caused problems with older compilers and is
not necessary for this constants.
| -rw-r--r-- | src/ngircd/conn.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h index 65df14ca..d9c81a8c 100644 --- a/src/ngircd/conn.h +++ b/src/ngircd/conn.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: conn.h,v 1.37 2005/07/11 14:56:38 fw Exp $ + * $Id: conn.h,v 1.38 2005/07/30 22:53:16 alex Exp $ * * Connection management (header) */ @@ -21,11 +21,11 @@ #include <time.h> /* for time_t, see below */ -#define CONN_ISCLOSING 1U /* Conn_Close() already called */ -#define CONN_ISCONNECTING 2U /* connect() in progress */ +#define CONN_ISCLOSING 1 /* Conn_Close() already called */ +#define CONN_ISCONNECTING 2 /* connect() in progress */ #ifdef ZLIB -#define CONN_ZIP 4U /* zlib compressed link */ +#define CONN_ZIP 4 /* zlib compressed link */ #endif |