diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-06-16 13:26:51 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2006-06-16 13:26:51 +0200 |
commit | 07e46c92467d0787f1318412186a64cf1c9da562 (patch) | |
tree | 1d9b346c87146f559e1a07d7d2e97b19ec7ac66b /irc.h | |
parent | b4e4b958ac5db7f59f8a21c914b02d8d487de2a4 (diff) | |
parent | 3af70b06b2f0fb0fb41a041f6d86e3711b9eea3f (diff) |
[merge] upstream
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -41,10 +41,10 @@ typedef enum { USTATUS_OFFLINE = 0, - USTATUS_AUTHORIZED, - USTATUS_LOGGED_IN, - USTATUS_IDENTIFIED, - USTATUS_SHUTDOWN = -1 + USTATUS_AUTHORIZED = 1, + USTATUS_LOGGED_IN = 2, + USTATUS_IDENTIFIED = 4, + USTATUS_SHUTDOWN = 8 } irc_status_t; typedef struct channel |