Changeset 727 for branches/ithildin-1.1


Ignore:
Timestamp:
05/12/06 00:10:18 (6 years ago)
Author:
wd
Message:

Fix dumb brain-o with numerics.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ithildin-1.1/modules/ircd/send.h

    r725 r727  
    166166      ircd.messages.msgs[index].default_fmt)) 
    167167 
    168 /* below here are defines for the numerics added by default */ 
    169 #define RPL_WELCOME 001 
    170 #define RPL_YOURHOST 002 
    171 #define RPL_CREATED 003 
    172 #define RPL_MYINFO 004 
    173 #define RPL_ISUPPORT 005 
    174 #define RPL_REDIR 010 
     168/* below here are defines for the numerics added by default. Worth noting 
     169 * that it is unwise to prefix numerics with leading 0s because then they 
     170 * will be interpreted as octal numbers (not that uh.. I did that...) */ 
     171#define RPL_WELCOME 1 
     172#define RPL_YOURHOST 2 
     173#define RPL_CREATED 3 
     174#define RPL_MYINFO 4 
     175#define RPL_ISUPPORT 5 
     176#define RPL_REDIR 10 
    175177#define RPL_LOADTOOHIGH 263 
    176178 
Note: See TracChangeset for help on using the changeset viewer.